@magicgol/polyjuice 0.17.0 → 0.17.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -4,11 +4,15 @@
4
4
  :class="classes"
5
5
  @click="onClick"
6
6
  >
7
- <div class="mg-v-card-content p-3"><slot></slot></div>
7
+ <div class="mg-v-card-body p-3"><slot></slot></div>
8
8
  <div
9
- class="mg-v-card-footer p-3"
9
+ class="mg-v-card-footer px-3 pb-3"
10
10
  v-if="footerVisibility"
11
- ><slot name="footer"></slot></div>
11
+ >
12
+ <div class="mg-v-card-content pt-3">
13
+ <slot name="footer"></slot>
14
+ </div>
15
+ </div>
12
16
  </div>
13
17
  </template>
14
18
 
@@ -58,7 +62,7 @@ export default {
58
62
 
59
63
  &--theme {
60
64
  &-club {
61
- & .mg-v-card-content {
65
+ & .mg-v-card-body {
62
66
  background: linear-gradient(90deg, #D1EFFF 0%, #DDDAFC 99.65%) !important;
63
67
  color: #777;
64
68
  }
@@ -66,7 +70,9 @@ export default {
66
70
  }
67
71
 
68
72
  &-footer {
69
- background-color: rgba(map-get($palette, 'brand'), 0.04);
73
+ .mg-v-card-content {
74
+ border-top: 1px solid #cecece;
75
+ }
70
76
  }
71
77
  }
72
78
  </style>
@@ -52,7 +52,7 @@ export default {
52
52
  }
53
53
 
54
54
  &--normal {
55
- background-color: white;
55
+ background-color: #f5f5f5;
56
56
 
57
57
  svg {
58
58
  fill: map-get($palette, 'brand');
@@ -60,10 +60,10 @@ export default {
60
60
  }
61
61
 
62
62
  &--club {
63
- background-color: map-get($palette, 'expertClub');
63
+ background-color: rgba(map-get($palette, 'expertClub'), 0.05);
64
64
 
65
65
  svg {
66
- fill: white;
66
+ fill: map-get($palette, 'expertClub');
67
67
  }
68
68
  }
69
69
  }