mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-14 18:46:17 +00:00
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
25 lines
488 B
SCSS
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;
|
|
}
|
|
}
|