barbican-reset 2.25.0 → 2.27.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.
- package/helpers/mixins/_buttons.scss +7 -2
- package/package.json +1 -1
- package/scss/_btn.scss +5 -1
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
@include focus {
|
|
142
|
-
@include single-box(
|
|
142
|
+
@include single-box(currentColor,
|
|
143
143
|
0.1875rem); // @BUG: safari outline + border-radius
|
|
144
144
|
border-radius: 50%;
|
|
145
145
|
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
path.tint {
|
|
151
|
-
fill:
|
|
151
|
+
fill: currentColor;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
}
|
|
@@ -331,6 +331,11 @@
|
|
|
331
331
|
@include display-button(flex, 0.5);
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
+
@mixin btn-remove-membership-from-basket {
|
|
335
|
+
@include solid-button($background: $c-status-error);
|
|
336
|
+
@include display-button(flex, 0.5);
|
|
337
|
+
}
|
|
338
|
+
|
|
334
339
|
// Access Overlay Work -- End
|
|
335
340
|
|
|
336
341
|
@mixin btn-expand {
|
package/package.json
CHANGED
package/scss/_btn.scss
CHANGED