firmware/installPybricksDialog: increase height

This ensures the dialog doesn't change size when clicking next even
with longer translations.
This commit is contained in:
David Lechner
2022-07-27 15:19:36 -05:00
parent 4e85b5c1b8
commit 8dadc8826c
@@ -5,7 +5,7 @@
.pb-firmware-installPybricksDialog {
&-body {
min-height: bp.$pt-grid-size * 25;
min-height: bp.$pt-grid-size * 35;
}
&-license {
@@ -17,11 +17,11 @@
&-text {
flex-grow: 1;
min-height: 0;
max-height: bp.$pt-grid-size * 20;
max-height: bp.$pt-grid-size * 30;
overflow: auto;
& .#{bp.$ns}-non-ideal-state {
min-height: bp.$pt-grid-size * 20;
min-height: bp.$pt-grid-size * 30;
}
}
}