mirror of
https://github.com/penpot/penpot.git
synced 2025-02-11 09:38:56 -05:00
🐛 Add ellipsis in long page names
This commit is contained in:
parent
636dbd4e57
commit
e09884af60
2 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Fix ellipsis in long page names [Taiga #2962](https://tree.taiga.io/project/penpot/issue/2962)
|
||||||
- Fix color palette animation [Taiga #2852](https://tree.taiga.io/project/penpot/issue/2852)
|
- Fix color palette animation [Taiga #2852](https://tree.taiga.io/project/penpot/issue/2852)
|
||||||
- Fix display code icon on preview hover [Taiga #2838](https://tree.taiga.io/project/penpot/us/2838)
|
- Fix display code icon on preview hover [Taiga #2838](https://tree.taiga.io/project/penpot/us/2838)
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,10 @@
|
||||||
span {
|
span {
|
||||||
color: $color-gray-10;
|
color: $color-gray-10;
|
||||||
font-size: $fs14;
|
font-size: $fs14;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow-x: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.tool-badge {
|
span.tool-badge {
|
||||||
|
|
Loading…
Add table
Reference in a new issue