mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-19 06:48:27 +00:00
25 lines
536 B
Text
25 lines
536 B
Text
// 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;
|
|
}
|
|
}
|