Files
pybricks-code/src/firmware/installPybricksDialog/installPybricksDialog.scss
T
2022-07-27 16:55:46 -05:00

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;
}
}
}