@snack-uikit/card 0.9.2 → 0.9.3-preview-314cc4de.0

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.
@@ -11,6 +11,7 @@
11
11
  .composition{
12
12
  border-radius:var(--radius-card-container, 20px);
13
13
  box-sizing:border-box;
14
+ height:100%;
14
15
  }
15
16
 
16
17
  .card{
@@ -81,6 +82,7 @@
81
82
  }
82
83
  .card[data-pointer][data-checked] .contentWrapper{
83
84
  position:relative;
85
+ height:100%;
84
86
  }
85
87
  .card[data-pointer][data-checked] .contentWrapper::before{
86
88
  content:"";
@@ -124,6 +126,7 @@
124
126
 
125
127
  .body{
126
128
  display:block;
129
+ width:100%;
127
130
  color:var(--sys-neutral-text-support, #565656);
128
131
  text-align:initial;
129
132
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Card",
7
- "version": "0.9.2",
7
+ "version": "0.9.3-preview-314cc4de.0",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -43,5 +43,5 @@
43
43
  "@snack-uikit/utils": "3.2.0",
44
44
  "classnames": "2.3.2"
45
45
  },
46
- "gitHead": "029bc819dd13f9006b9ad584fb56454517a2077d"
46
+ "gitHead": "5f1f8fe6dd158a168fd591fbf595eb5d0f5b5892"
47
47
  }
@@ -18,6 +18,7 @@ $sizes: 's', 'm', 'l';
18
18
  @include composite-var($card-composition-container);
19
19
 
20
20
  box-sizing: border-box;
21
+ height: 100%;
21
22
  }
22
23
 
23
24
  .card {
@@ -107,6 +108,7 @@ $sizes: 's', 'm', 'l';
107
108
 
108
109
  .contentWrapper {
109
110
  position: relative;
111
+ height: 100%;
110
112
 
111
113
  &::before {
112
114
  content: '';
@@ -160,6 +162,7 @@ $sizes: 's', 'm', 'l';
160
162
 
161
163
  .body {
162
164
  display: block;
165
+ width: 100%;
163
166
  color: $sys-neutral-text-support;
164
167
  text-align: initial;
165
168
  }