0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 07:29:08 -05:00

🐛 Fix ellipsis on color row

This commit is contained in:
Xaviju 2024-02-21 16:33:24 +01:00 committed by Andrey Antukh
parent 8cc4ff0b4c
commit 7879d883cf

View file

@ -21,6 +21,7 @@
--detach-icon-foreground-color: none;
display: grid;
flex: 1;
grid-template-columns: 1fr auto;
align-items: center;
gap: $s-2;
@ -42,10 +43,15 @@
@extend .input-element;
flex-grow: 1;
width: 100%;
min-width: 0;
border-radius: $br-8 0 0 $br-8;
padding: 0;
margin-inline-end: 0;
gap: $s-4;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
input {
padding: 0;
}