🐛 Fix export dropdown on inspect

This commit is contained in:
Eva 2024-01-12 13:23:57 +01:00 committed by Alonso Torres
parent 6ecf0f4ca4
commit 1761a16d31

View file

@ -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 {