@rogieking/figui3 1.0.54 → 1.0.55
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 +8 -1
- package/package.json +1 -1
package/fig.css
CHANGED
|
@@ -657,7 +657,8 @@ fig-button {
|
|
|
657
657
|
}
|
|
658
658
|
|
|
659
659
|
/* Variant: Ghost */
|
|
660
|
-
&[variant="ghost"]
|
|
660
|
+
&[variant="ghost"],
|
|
661
|
+
&[variant="link"] {
|
|
661
662
|
box-shadow: none;
|
|
662
663
|
background: none;
|
|
663
664
|
color: var(--figma-color-text);
|
|
@@ -676,6 +677,10 @@ fig-button {
|
|
|
676
677
|
background-color: transparent;
|
|
677
678
|
}
|
|
678
679
|
|
|
680
|
+
&[variant="link"] {
|
|
681
|
+
color: var(--figma-color-text-brand);
|
|
682
|
+
}
|
|
683
|
+
|
|
679
684
|
/* Variant: Secondary */
|
|
680
685
|
&[variant="secondary"] {
|
|
681
686
|
box-shadow: inset 0 0 0 1px var(--figma-color-border);
|
|
@@ -698,6 +703,8 @@ fig-button {
|
|
|
698
703
|
&[icon] > button {
|
|
699
704
|
width: var(--spacer-4);
|
|
700
705
|
padding: 0;
|
|
706
|
+
flex-grow: 0
|
|
707
|
+
flex-shrink: 0;
|
|
701
708
|
|
|
702
709
|
&:hover {
|
|
703
710
|
background-color: var(--figma-color-bg-ghost-hover);
|
package/package.json
CHANGED