🐛 Fix extra long names on typography assets

This commit is contained in:
Eva 2023-05-22 12:39:35 +02:00 committed by Alonso Torres
parent fbfff07dec
commit defec189e2
7 changed files with 23 additions and 5 deletions

View file

@ -434,6 +434,14 @@
cursor: pointer;
position: relative;
.name-block {
color: $color-gray-20;
width: calc(100% - 24px - #{$size-2});
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
& span {
margin-left: $size-1;
color: $color-gray-30;

View file

@ -1095,7 +1095,10 @@
flex-grow: 1;
font-size: $fs11;
margin-top: 4px;
max-width: calc(var(--width, 256px) - 100px);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.element-set-actions-button svg {

View file

@ -9,6 +9,10 @@
& .typography-name {
color: $color-white;
max-width: 160px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
& .typography-font,