@burh/nuxt-core 1.0.87 → 1.0.89

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.
@@ -50,4 +50,7 @@
50
50
  };
51
51
  </script>
52
52
  <style>
53
+ .badge-bg-color {
54
+ background-color: #EFF5FD;
55
+ }
53
56
  </style>
@@ -8,13 +8,13 @@
8
8
  :text="firstItemText"
9
9
  @functionality-click="$emit('click-first-item')"/>
10
10
  <functionality-item
11
- class="cursor-pointer"
11
+ class="cursor-pointer border-left padding-border"
12
12
  :icone="secondItemIcon"
13
13
  :text="secondItemText"
14
14
  @functionality-click="$emit('click-second-item')" />
15
15
  </ul>
16
16
  <hr>
17
- <h4 class="list-title">{{title}}</h4>
17
+ <h6 class="list-title">{{title}}</h6>
18
18
  <ul class="list">
19
19
  <slot></slot>
20
20
  </ul>
@@ -47,7 +47,7 @@ export default {
47
47
  </script>
48
48
  <style lang="scss" scoped>
49
49
  .list {
50
- margin: 3rem 0;
50
+ margin: 1.8rem 0;
51
51
  display: flex;
52
52
  justify-content: space-evenly;
53
53
  }
@@ -58,10 +58,16 @@ export default {
58
58
  }
59
59
 
60
60
  .list-title {
61
- font-size: 1.25rem;
61
+ // font-size: 1.25rem;
62
62
  }
63
63
 
64
64
  .footer-text {
65
- margin-left: 2rem;
65
+ margin-left: 1rem;
66
+ opacity: 30% !important;
67
+ font-size: smaller;
68
+ }
69
+ .padding-border {
70
+ padding-left: 3rem;
66
71
  }
72
+
67
73
  </style>
@@ -50,6 +50,7 @@ export default {
50
50
 
51
51
  &--value {
52
52
  font-size: 1.75rem;
53
+ align-self: center;
53
54
  }
54
55
  }
55
56
 
@@ -4,7 +4,14 @@
4
4
  <div :class="contentClass" class="product-item--content">
5
5
  <component :is="titleTag" :class="titleClass" class="product-item--title">{{title}}</component>
6
6
  <p :class="descriptionClass" class="product-item--description" v-if="description">{{description}}</p>
7
- <badge :class="badgeClass" v-if="hasEnableBadge">Habilitar</badge>
7
+ <badge
8
+ rounded
9
+ size="md"
10
+ class="ml-auto badge-bg-color"
11
+ type="primary"
12
+ v-show="hasEnableBadge"
13
+ >UPGRADE
14
+ </badge>
8
15
  </div>
9
16
  </default-link>
10
17
  </template>
@@ -51,10 +58,9 @@ export default {
51
58
  };
52
59
  </script>
53
60
 
54
- <style lang="scss">
55
-
61
+ <style lang="scss" scoped>
56
62
  .product-item {
57
- display: inline-block;
63
+ display:inline-block;
58
64
 
59
65
  &--title {
60
66
  text-align: center;
@@ -70,4 +76,8 @@ export default {
70
76
  }
71
77
  }
72
78
 
79
+ .card-body {
80
+ height: 30rem !important;
81
+ }
82
+
73
83
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {