@rogieking/figui3 1.0.28 → 1.0.29
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/fig.css +13 -0
- package/package.json +1 -1
package/fig.css
CHANGED
|
@@ -560,6 +560,7 @@ fig-segmented-control {
|
|
|
560
560
|
min-width: 6rem;
|
|
561
561
|
height: 1.5rem;
|
|
562
562
|
padding: 1px;
|
|
563
|
+
gap: 0;
|
|
563
564
|
display: inline-flex;
|
|
564
565
|
align-items: stretch;
|
|
565
566
|
|
|
@@ -775,6 +776,18 @@ fig-button {
|
|
|
775
776
|
padding: var(--spacer-1) var(--spacer-2);
|
|
776
777
|
}
|
|
777
778
|
|
|
779
|
+
&[type="select"],
|
|
780
|
+
&[type="upload"] {
|
|
781
|
+
position: relative;
|
|
782
|
+
select,
|
|
783
|
+
input {
|
|
784
|
+
position: absolute;
|
|
785
|
+
inset: 0;
|
|
786
|
+
opacity: 0;
|
|
787
|
+
appearance: none;
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
|
|
778
791
|
&[inline="false"] {
|
|
779
792
|
padding: 0;
|
|
780
793
|
}
|
package/package.json
CHANGED