mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-30 23:01:30 +01:00
2e91ee843c
Less hasn't received an update in over a year and the parser is missing some modern syntax like relative colors so this switches us to scss
23 lines
442 B
SCSS
23 lines
442 B
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.plot-view {
|
|
width: 100%;
|
|
|
|
.plot-window {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.plot-config {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
resize: none;
|
|
height: 50vh;
|
|
background-color: var(--panel-bg-color);
|
|
color: var(--main-text-color);
|
|
font: var(--fixed-font);
|
|
}
|
|
}
|