mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
39 lines
633 B
Plaintext
39 lines
633 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
@import "./reset.less";
|
|
@import "./theme.less";
|
|
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|