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

🐛 Fix visual problem in select options

This commit is contained in:
alonso.torres 2023-03-23 11:12:31 +01:00
parent 020454e701
commit d0878aa805
2 changed files with 5 additions and 0 deletions

View file

@ -48,6 +48,7 @@
- Show warning when trying to invite a user that is already in members [Taiga #4147](https://tree.taiga.io/project/penpot/issue/4147)
- Fix problem with text out of borders when changing from auto-width to fixed [Taiga #4308](https://tree.taiga.io/project/penpot/issue/4308)
- Fix header not showing when exiting fullscreen mode in viewer [Taiga #4244](https://tree.taiga.io/project/penpot/issue/4244)
- Fix visual problem in select options [Taiga #5028](https://tree.taiga.io/project/penpot/issue/5028)
### :heart: Community contributions by (Thank you!)
- To @ondrejkonec: for contributing to the code with:

View file

@ -195,6 +195,10 @@
}
.input-select {
/* This padding is so the text won't overlap the arrow*/
padding-right: 1rem;
overflow: hidden;
text-overflow: ellipsis;
color: $color-gray-10;
&:focus {