mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-11 13:23:06 +01:00
The migration tool we used didn't take into account our formatting standards so I'm bulk-formatting the SCSS files to bring them back up to our standards. Basically this just changes the tab size for all the files.
62 lines
1.0 KiB
SCSS
62 lines
1.0 KiB
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
@import "./reset.scss";
|
|
@import "./theme.scss";
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: var(--main-bg-color);
|
|
color: var(--main-text-color);
|
|
font: var(--base-font);
|
|
overflow: hidden;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 4px;
|
|
height: 4px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background-color: var(--scrollbar-background-color) !important;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: var(--scrollbar-thumb-color) !important;
|
|
border-radius: 4px;
|
|
margin: 0 1px 0 1px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background-color: var(--scrollbar-thumb-hover-color) !important;
|
|
}
|
|
|
|
.flex-spacer {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.text-fixed {
|
|
font: var(--fixed-font);
|
|
}
|
|
|
|
#main,
|
|
.mainapp {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.titlebar {
|
|
height: 35px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.error-boundary {
|
|
color: var(--error-color);
|
|
}
|