barbican-reset 2.5.0 → 2.6.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.
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
@include single-box($white);
|
|
38
38
|
background-color: $white;
|
|
39
39
|
border-radius: 0;
|
|
40
|
-
color:
|
|
40
|
+
color: black;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
@mixin box-setup {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
z-index: 2;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
@mixin double-box($bg: $white, $col:
|
|
49
|
+
@mixin double-box($bg: $white, $col: black, $bg_size: 0.25rem, $col_size: 0.15rem) {
|
|
50
50
|
@include box-setup;
|
|
51
51
|
box-shadow: 0 0 0 $bg_size $bg, 0 0 0 ($bg_size + $col_size) $col;
|
|
52
52
|
}
|
|
@@ -18,7 +18,7 @@ $gap-account: 2rem;
|
|
|
18
18
|
|
|
19
19
|
$select-arrow: "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e";
|
|
20
20
|
|
|
21
|
-
$box-shadow-card: 0 0 0.5rem rgba(
|
|
21
|
+
$box-shadow-card: 0 0 0.5rem rgba(black, 0.1);
|
|
22
22
|
|
|
23
23
|
$padding-button-xs: 0.625rem;
|
|
24
24
|
$padding-button-sm: 0.75rem;
|
package/package.json
CHANGED
package/scss/_klaro.scss
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
@include media-breakpoint-up(lg) {
|
|
48
|
-
box-shadow: 0 4px 6px 0 rgba(
|
|
48
|
+
box-shadow: 0 4px 6px 0 rgba(black, 0.2), 5px 5px 10px 0 rgba(black, 0.2);
|
|
49
49
|
border-radius: $border-radius;
|
|
50
50
|
max-width: 28rem;
|
|
51
51
|
bottom: 1.25rem;
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
.slider {
|
|
78
|
-
box-shadow: 0 4px 6px 0 rgba(
|
|
78
|
+
box-shadow: 0 4px 6px 0 rgba(black, 0.2), 5px 5px 10px 0 rgba(black, 0.2);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
.cm-switch {
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
.cm-bg {
|
|
216
|
-
background: rgba(
|
|
216
|
+
background: rgba(black, 0.5);
|
|
217
217
|
position: fixed;
|
|
218
218
|
height: 100%;
|
|
219
219
|
width: 100%;
|
|
@@ -225,8 +225,8 @@
|
|
|
225
225
|
&.cm-klaro {
|
|
226
226
|
background: $c-grey-l21;
|
|
227
227
|
color: $c-grey-l87;
|
|
228
|
-
box-shadow: 0 4px 6px 0 rgba(
|
|
229
|
-
5px 5px 10px 0 rgba(
|
|
228
|
+
box-shadow: 0 4px 6px 0 rgba(black, 0.2),
|
|
229
|
+
5px 5px 10px 0 rgba(black, 0.2);
|
|
230
230
|
transform: translateY(-50%);
|
|
231
231
|
max-height: 98%;
|
|
232
232
|
position: fixed;
|