mirror of
https://github.com/penpot/penpot.git
synced 2025-06-07 21:01:39 +02:00
🐛 Fix export dropdown on inspect
This commit is contained in:
parent
6ecf0f4ca4
commit
1761a16d31
1 changed files with 27 additions and 20 deletions
|
@ -46,6 +46,10 @@
|
||||||
@include flexRow;
|
@include flexRow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.element-group {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(8, 1fr);
|
||||||
|
column-gap: $s-4;
|
||||||
.action-btn {
|
.action-btn {
|
||||||
@extend .button-tertiary;
|
@extend .button-tertiary;
|
||||||
height: $s-32;
|
height: $s-32;
|
||||||
|
@ -54,35 +58,38 @@
|
||||||
@extend .button-icon;
|
@extend .button-icon;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.element-group {
|
|
||||||
@include flexRow;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-wrapper {
|
.input-wrapper {
|
||||||
@include flexRow;
|
grid-column: span 7;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: subgrid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.format-select {
|
.format-select {
|
||||||
width: $s-60;
|
grid-column: span 2;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-upwards {
|
.dropdown-upwards {
|
||||||
bottom: $s-36;
|
bottom: $s-36;
|
||||||
width: $s-80;
|
width: $s-80;
|
||||||
top: unset;
|
top: unset;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.size-select {
|
.size-select {
|
||||||
width: $s-60;
|
grid-column: span 2;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
.dropdown-upwards {
|
||||||
|
bottom: $s-36;
|
||||||
|
top: unset;
|
||||||
|
width: $s-80;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.suffix-input {
|
.suffix-input {
|
||||||
@extend .input-element;
|
@extend .input-element;
|
||||||
min-width: $s-92;
|
grid-column: span 3;
|
||||||
flex-grow: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.export-btn {
|
.export-btn {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue