mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
d8edea9fbc
forgot to update .editorconfig to include scss...
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;
|
|
}
|
|
}
|
|
}
|
|
}
|