🐛 Fix export button width on design tab (#6744)

This commit is contained in:
Eva Marco 2025-06-20 12:04:49 +02:00 committed by GitHub
parent 3d0c3013e5
commit 1a8f36562b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -39,7 +39,7 @@
.multiple-exports {
@include flexRow;
grid-column: 1 / 9;
grid-column: 1 / span 9;
}
.label {

View file

@ -23,6 +23,7 @@
.multiple-exports {
@include flexRow;
grid-column: 1 / span 9;
.label {
@extend .mixed-bar;
}
@ -73,6 +74,6 @@
.export-btn {
@extend .button-secondary;
@include uppercaseTitleTipography;
grid-column: 1 / span 8;
grid-column: 1 / span 9;
height: $s-32;
}