mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-04 18:59:08 +01:00
45 lines
901 B
Plaintext
45 lines
901 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
|
|
.block-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
height: 30px;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--panel-bg-color);
|
|
|
|
.block-header-text {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.close-button {
|
|
font-size: 12px;
|
|
padding-right: 5px;
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.block-content {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
}
|