@burh/nuxt-core 1.0.273 → 1.0.274

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -167,7 +167,6 @@ export default {
167
167
  </script>
168
168
  <style lang="scss" scoped>
169
169
  @import "@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss";
170
-
171
170
  .send-test-modal {
172
171
  position: fixed;
173
172
  overflow-y: scroll;
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <modal :show.sync="isModalOpen" v-on:close="closeModal" class="modal">
2
+ <modal :show.sync="isModalOpen" v-on:close="closeModal" class="modal sms-modal">
3
3
  <template slot="header">
4
4
  <h2 class="display-4 px-4">
5
5
  Enviar SMS
@@ -317,7 +317,7 @@ export default {
317
317
  .badge {
318
318
  margin-bottom: 1.5rem;
319
319
  }
320
- .modal-body {
320
+ .sms-modal {
321
321
  padding: 1.5rem !important;
322
322
  }
323
323
 
@@ -1,60 +1,60 @@
1
1
  <template>
2
- <div>
3
- <modal
4
- :show.sync="isModalOpen"
5
- @close="$emit('close-modal')"
6
- class="modal modal-video"
7
- bodyClasses="container-fluid px-4"
8
- headerClasses="container-fluid px-4"
9
- >
10
- <template slot="header">
11
- <h5 class="display-4">{{ title }}</h5>
12
- </template>
13
- <div class="text-center my-4">
14
- <iframe
15
- v-if="isModalOpen"
16
- width="100%"
17
- height="540"
18
- :src="link"
19
- frameborder="0"
20
- allowfullscreen
21
- class="rounded"
22
- >
23
- </iframe>
24
- <div class="bottom-button" v-if="button">
25
- <button
26
- @click="$emit('clickVideo')"
27
- class="btn btn-success"
28
- >
29
- {{ button.text }}
30
- </button>
31
- </div>
32
- </div>
33
- </modal>
34
- </div>
2
+ <div>
3
+ <modal
4
+ :show.sync="isModalOpen"
5
+ @close="$emit('close-modal')"
6
+ class="modal modal-video"
7
+ bodyClasses="container-fluid px-4"
8
+ headerClasses="container-fluid px-4"
9
+ >
10
+ <template slot="header">
11
+ <h5 class="display-4">{{ title }}</h5>
12
+ </template>
13
+ <div class="text-center my-4">
14
+ <iframe
15
+ v-if="isModalOpen"
16
+ width="100%"
17
+ height="540"
18
+ :src="link"
19
+ frameborder="0"
20
+ allowfullscreen
21
+ class="rounded"
22
+ >
23
+ </iframe>
24
+ <div class="bottom-button" v-if="button">
25
+ <button
26
+ @click="$emit('clickVideo')"
27
+ class="btn btn-success"
28
+ >
29
+ {{ button.text }}
30
+ </button>
31
+ </div>
32
+ </div>
33
+ </modal>
34
+ </div>
35
35
  </template>
36
36
 
37
37
  <script>
38
38
  export default {
39
- name: "video-modal",
40
- props: {
41
- show: {
42
- type: false,
43
- },
44
- link: String,
45
- title: String,
46
- button: Object
47
- },
48
- data() {
49
- return {
50
- isModalOpen: this.show
51
- };
52
- },
53
- watch: {
54
- show(value) {
55
- this.isModalOpen = value;
56
- }
57
- }
39
+ name: 'video-modal',
40
+ props: {
41
+ show: {
42
+ type: false,
43
+ },
44
+ link: String,
45
+ title: String,
46
+ button: Object
47
+ },
48
+ data() {
49
+ return {
50
+ isModalOpen: this.show
51
+ };
52
+ },
53
+ watch: {
54
+ show(value) {
55
+ this.isModalOpen = value;
56
+ }
57
+ }
58
58
  };
59
59
  </script>
60
60
  <style lang="scss">
@@ -69,7 +69,7 @@ export default {
69
69
  padding-bottom: 0;
70
70
  }
71
71
  .modal-body {
72
- padding: 0;
72
+ padding: 0 !important;
73
73
  }
74
74
 
75
75
  .modal-video {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.273",
3
+ "version": "1.0.274",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {