🐛 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,43 +46,50 @@
@include flexRow; @include flexRow;
} }
.action-btn { .element-group {
@extend .button-tertiary; display: grid;
height: $s-32; grid-template-columns: repeat(8, 1fr);
width: $s-28; column-gap: $s-4;
svg { .action-btn {
@extend .button-icon; @extend .button-tertiary;
height: $s-32;
width: $s-28;
svg {
@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 {