mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-23 16:58:27 +01:00
22 lines
388 B
Plaintext
22 lines
388 B
Plaintext
|
// Copyright 2024, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
.view-term {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.view-preview {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
flex-grow: 1;
|
||
|
overflow: hidden;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|