@rogieking/figui3 8.9.9 → 8.9.10

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 CHANGED
@@ -5639,6 +5639,23 @@ fig-menu-item {
5639
5639
  line-height: var(--spacer-4);
5640
5640
  min-height: var(--spacer-4);
5641
5641
  }
5642
+
5643
+ &:first-child{
5644
+ &::before {
5645
+ display: none;
5646
+ }
5647
+ }
5648
+
5649
+ &[sticky]:not([sticky="false"]) {
5650
+ position: sticky;
5651
+ top: 0;
5652
+ z-index: 1;
5653
+ background: var(--fig-popup-bg-color, var(--figma-color-bg));
5654
+
5655
+ :is(fig-select-options, .fig-menu-options).overflow-start > & {
5656
+ top: var(--fig-vertical-overflow-size, var(--spacer-4));
5657
+ }
5658
+ }
5642
5659
  }
5643
5660
  }
5644
5661