update blueprints

This had a breaking change with regard to sass compiling.
This commit is contained in:
David Lechner
2022-05-10 22:15:28 -05:00
parent 96d36f81e2
commit 8d522b963a
9 changed files with 262 additions and 1020 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2020-2022 The Pybricks Authors
@use 'sass:math';
@import './variables.scss';
@import '~normalize.css';
@import '~@blueprintjs/core/src/blueprint.scss';
@@ -109,5 +110,5 @@ a.#{$ns}-button {
// don't take up so much space when there is no caret
.#{$ns}-tree-node-caret-none {
// $pt-grid-size / 2 matches padding on .#{$ns}-tree-node-conent
min-width: $pt-grid-size / 2;
min-width: math.div($pt-grid-size, 2);
}