firmware: add multi-step dialog

This commit is contained in:
David Lechner
2022-07-20 12:32:17 -05:00
parent b70777178c
commit 85deb42f76
42 changed files with 1119 additions and 327 deletions
@@ -0,0 +1,22 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2022 The Pybricks Authors
.pb-firmware-installPybricksDialog {
&-body {
min-height: 250px;
}
&-license {
display: flex;
flex-direction: column;
gap: 10px;
min-height: inherit;
&-text {
flex-grow: 1;
min-height: 0;
max-height: 200px;
overflow: auto;
}
}
}