mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-13 10:04:15 +00:00
29 lines
632 B
SCSS
29 lines
632 B
SCSS
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022 The Pybricks Authors
|
|
|
|
@use '@blueprintjs/core/lib/scss/variables' as bp;
|
|
|
|
.pb-firmware-installPybricksDialog {
|
|
&-body {
|
|
min-height: bp.$pt-grid-size * 25;
|
|
}
|
|
|
|
&-license {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: bp.$pt-grid-size;
|
|
min-height: inherit;
|
|
|
|
&-text {
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
max-height: bp.$pt-grid-size * 20;
|
|
overflow: auto;
|
|
|
|
& .#{bp.$ns}-non-ideal-state {
|
|
min-height: bp.$pt-grid-size * 20;
|
|
}
|
|
}
|
|
}
|
|
}
|