0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-23 15:26:29 -05:00

🐛 Fix track info overflowing

This commit is contained in:
alonso.torres 2023-12-04 13:01:27 +01:00 committed by Andrey Antukh
parent b5a9e28d0a
commit 41d420234a

View file

@ -260,12 +260,20 @@
flex-grow: 1;
padding: $s-8;
gap: 0;
overflow: hidden;
}
.track-name {
color: var(--color-foreground-secondary);
}
.track-detail {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 100%;
}
.expand-icon {
@extend .button-secondary;
height: $s-52;