@nattstack/ui 0.0.83 → 0.0.85
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/dist/components/style.css +12 -0
- package/package.json +1 -1
|
@@ -128,6 +128,7 @@
|
|
|
128
128
|
|
|
129
129
|
.button-module_loading_4nLWdW > :not([data-slot="button-spinner"]) {
|
|
130
130
|
color: #0000;
|
|
131
|
+
text-shadow: none;
|
|
131
132
|
}
|
|
132
133
|
|
|
133
134
|
.button-module_rounded_base_4nLWdW.button-module_size_32_4nLWdW {
|
|
@@ -250,6 +251,17 @@
|
|
|
250
251
|
--color-mixed: #fff;
|
|
251
252
|
}
|
|
252
253
|
|
|
254
|
+
.button-module_variant_primary_4nLWdW > * {
|
|
255
|
+
--opacity: .25;
|
|
256
|
+
filter: drop-shadow(0 1px 1px hsla(0, 0%, 0%, var(--opacity)));
|
|
257
|
+
transition-duration: inherit;
|
|
258
|
+
transition-property: filter;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.button-module_variant_primary_4nLWdW:hover:not(:disabled) > * {
|
|
262
|
+
--opacity: 0;
|
|
263
|
+
}
|
|
264
|
+
|
|
253
265
|
.button-module_variant_secondary_4nLWdW {
|
|
254
266
|
--color-text: #000;
|
|
255
267
|
background-color: var(--color-bg-shell-outer);
|