mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-07 19:28:44 +01:00
32 lines
675 B
SCSS
32 lines
675 B
SCSS
|
// Copyright 2024, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
.chat-view {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
.chat-section {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex-grow: 1;
|
||
|
|
||
|
.message-wrapper {
|
||
|
flex-grow: 1; // Make the ChatMessages take up available height
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden; // Ensure content doesn't overflow
|
||
|
}
|
||
|
|
||
|
.chatbox {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
textarea {
|
||
|
border: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|