mirror of
https://github.com/penpot/penpot.git
synced 2025-01-22 14:39:45 -05:00
🐛 Fix length of names in sidebar
This commit is contained in:
parent
d1c834e647
commit
9eea7dabc2
2 changed files with 13 additions and 4 deletions
11
CHANGES.md
11
CHANGES.md
|
@ -1,5 +1,16 @@
|
|||
# CHANGELOG
|
||||
|
||||
## 1.12.1-beta
|
||||
### :boom: Breaking changes
|
||||
|
||||
### :sparkles: New features
|
||||
|
||||
### :bug: Bugs fixed
|
||||
|
||||
- Fix length of names in sidebar [Taiga #2962](https://tree.taiga.io/project/penpot/issue/2962)
|
||||
|
||||
### :heart: Community contributions by (Thank you!)
|
||||
|
||||
## 1.12.0-beta
|
||||
|
||||
### :boom: Breaking changes
|
||||
|
|
|
@ -183,21 +183,19 @@
|
|||
}
|
||||
|
||||
input.element-name {
|
||||
max-width: 130px;
|
||||
width: 100%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
span.element-name {
|
||||
color: $color-gray-20;
|
||||
display: block;
|
||||
font-size: $fs12;
|
||||
max-width: 130px;
|
||||
max-width: 75%;
|
||||
min-width: 40px;
|
||||
min-height: 16px;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.element-actions {
|
||||
|
|
Loading…
Add table
Reference in a new issue