mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
https://blueprintjs.com/docs/#core/typography Also fix wrapping license text while we are touching this.
39 lines
861 B
SCSS
39 lines
861 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 * 40;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: bp.$pt-grid-size;
|
|
}
|
|
|
|
&-license {
|
|
&-text {
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
min-height: 0;
|
|
max-height: bp.$pt-grid-size * 35;
|
|
overflow: auto;
|
|
|
|
& .#{bp.$ns}-non-ideal-state {
|
|
min-height: bp.$pt-grid-size * 35;
|
|
}
|
|
|
|
& pre {
|
|
white-space: pre-wrap;
|
|
word-break: keep-all;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&-checkbox {
|
|
margin-top: auto;
|
|
}
|
|
}
|
|
}
|