mirror of
https://github.com/penpot/penpot.git
synced 2025-05-12 08:56:37 +02:00
🐛 Fix search bar width on layer tab
This commit is contained in:
parent
2e461b3070
commit
3dcd640a99
2 changed files with 9 additions and 0 deletions
|
@ -60,6 +60,7 @@
|
||||||
- Fix incorrect message after sending invitation to already member [Taiga 5599](https://tree.taiga.io/project/penpot/issue/5599)
|
- Fix incorrect message after sending invitation to already member [Taiga 5599](https://tree.taiga.io/project/penpot/issue/5599)
|
||||||
- Fix text decoration on button [Taiga #5301](https://tree.taiga.io/project/penpot/issue/5301)
|
- Fix text decoration on button [Taiga #5301](https://tree.taiga.io/project/penpot/issue/5301)
|
||||||
- Fix menu order on design tab [Taiga #5195](https://tree.taiga.io/project/penpot/issue/5195)
|
- Fix menu order on design tab [Taiga #5195](https://tree.taiga.io/project/penpot/issue/5195)
|
||||||
|
- Fix search bar width on layer tab [Taiga #5445](https://tree.taiga.io/project/penpot/issue/5445)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
|
|
||||||
|
|
|
@ -378,6 +378,8 @@ span.element-name {
|
||||||
background-color: $color-gray-50;
|
background-color: $color-gray-50;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
font-size: $fs12;
|
font-size: $fs12;
|
||||||
|
flex-grow: 1;
|
||||||
|
margin: 0;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
|
@ -386,10 +388,16 @@ span.element-name {
|
||||||
div {
|
div {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
.filter,
|
.filter,
|
||||||
.clear {
|
.clear {
|
||||||
width: 35px;
|
width: 35px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
&.active {
|
&.active {
|
||||||
svg {
|
svg {
|
||||||
fill: $color-primary;
|
fill: $color-primary;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue