Files
pybricks-code/src/settings/settings.scss
T
David Lechner 3974613738 activities: fix not scrolling on overflow
This adds css needed to make the activities tab view contents scroll
appropriately when the contents don't fit vertically.

Fixes: https://github.com/pybricks/support/issues/782
2022-11-08 13:56:38 -06:00

25 lines
488 B
SCSS

// SPDX-License-Identifier: MIT
// Copyright (c) 2021-2022 The Pybricks Authors
// Custom styling for the settings controls.
@use '@blueprintjs/core/lib/scss/variables' as bp;
.pb-settings {
overflow-y: auto;
.#{bp.$ns}-control-group {
.#{bp.$ns}-button {
margin-bottom: 3px;
}
.#{bp.$ns}-input-group {
width: bp.$pt-grid-size * 20;
}
}
& .#{bp.$ns}-control {
max-width: bp.$pt-grid-size * 20;
}
}