@rogieking/figui3 8.9.43 → 8.9.44

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
@@ -3565,6 +3565,7 @@ fig-group {
3565
3565
 
3566
3566
  & > fig-header {
3567
3567
  cursor: default;
3568
+ gap: 0;
3568
3569
 
3569
3570
  &:focus-visible {
3570
3571
  --figma-focus-outline-radius: var(--radius-medium);
@@ -3572,17 +3573,26 @@ fig-group {
3572
3573
  outline-offset: var(--figma-focus-outline-offset);
3573
3574
  border-radius: var(--figma-focus-outline-radius);
3574
3575
  }
3575
- h3 {
3576
+ & > h3 {
3577
+ flex: 1 1 auto;
3578
+ min-width: 0;
3579
+ display: block;
3576
3580
  margin:0;
3577
- .fig-group-chevron {
3578
- --icon: var(--icon-16-chevron);
3579
- --size: 1rem;
3580
- color: var(--figma-color-text-tertiary);
3581
- transform: rotate(-90deg);
3582
- transition: transform var(--transition-duration)
3583
- var(--transition-timing-function);
3584
- margin-left: calc(var(--spacer-3) * -1);
3585
- }
3581
+ padding-left: 0;
3582
+ text-overflow: ellipsis;
3583
+ overflow: hidden;
3584
+ white-space: nowrap;
3585
+ max-width: 100%;
3586
+ }
3587
+ & > .fig-group-chevron {
3588
+ --icon: var(--icon-16-chevron);
3589
+ --size: 1rem;
3590
+ flex: 0 0 auto;
3591
+ color: var(--figma-color-text-tertiary);
3592
+ transform: rotate(-90deg);
3593
+ transition: transform var(--transition-duration)
3594
+ var(--transition-timing-function);
3595
+ margin-left: calc(var(--spacer-2) * -1);
3586
3596
  }
3587
3597
  }
3588
3598