0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-10 09:08:31 -05:00

🐛 Fix problem with span overflow

This commit is contained in:
alonso.torres 2022-07-15 10:57:53 +02:00 committed by Alonso Torres
parent 54d9b02b4d
commit 4088e55c9f
6 changed files with 6 additions and 6 deletions

View file

@ -92,7 +92,7 @@
color: $color-gray-20;
font-size: $fs12;
max-width: 75%;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

View file

@ -212,7 +212,7 @@ span.element-name {
max-width: 75%;
min-width: 40px;
min-height: 16px;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;

View file

@ -28,7 +28,7 @@
color: $color-gray-20;
font-size: $fs12;
max-width: 75%;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

View file

@ -51,7 +51,7 @@
color: $color-gray-10;
font-size: $fs14;
max-width: 100%;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

View file

@ -150,7 +150,7 @@
color: $color-gray-20;
margin-right: $size-1;
font-size: $fs14;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

View file

@ -122,7 +122,7 @@
span {
color: $color-white;
font-size: $fs14;
overflow-x: hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;