@rogieking/figui3 8.8.0 → 8.8.1
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/components.css +4 -1
- package/dist/components.css +1 -1
- package/dist/fig.css +1 -1
- package/dist/fig.js +1 -1
- package/fig.js +7 -2
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -4873,8 +4873,11 @@ fig-icon {
|
|
|
4873
4873
|
-webkit-mask-repeat: no-repeat;
|
|
4874
4874
|
-webkit-mask-position: center;
|
|
4875
4875
|
|
|
4876
|
+
/* Slotted SVGs paint themselves, so the mask/background pipeline must be
|
|
4877
|
+
fully disabled — including the inline background-color set by [color]. */
|
|
4876
4878
|
&:has(> svg) {
|
|
4877
|
-
background: transparent;
|
|
4879
|
+
background: transparent !important;
|
|
4880
|
+
color: var(--icon-color, inherit);
|
|
4878
4881
|
mask-image: none;
|
|
4879
4882
|
-webkit-mask-image: none;
|
|
4880
4883
|
}
|