mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-12 13:29:15 +01:00
32 lines
636 B
Plaintext
32 lines
636 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-shrink: 0;
|
|
height: 30px;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--panel-bg-color);
|
|
}
|
|
|
|
.block-content {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
}
|