mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
32 lines
578 B
Plaintext
32 lines
578 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.tabcontent {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
|
|
.block-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1 0 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border-color);
|
|
margin: 5px;
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.block1 {
|
|
}
|
|
|
|
.block2 {
|
|
}
|
|
}
|