mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-14 10:35:11 +00:00
This starts moving alerts to the same subsystem where they are relevant instead of putting everything in notifications. So far, only the explorer file in use error is handled like this.
11 lines
255 B
SCSS
11 lines
255 B
SCSS
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022 The Pybricks Authors
|
|
|
|
@use '@blueprintjs/core/lib/scss/variables' as bp;
|
|
|
|
pre.pb-alerts-stack-trace {
|
|
max-width: bp.$pt-grid-size * 50;
|
|
max-height: bp.$pt-grid-size * 50;
|
|
overflow: auto;
|
|
}
|