mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-02-02 23:31:43 +01:00
24 lines
464 B
Plaintext
24 lines
464 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.chat-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 6px;
|
|
|
|
.chat-time {
|
|
font-size: 12px;
|
|
color: var(--main-text-color);
|
|
margin-bottom: 4px;
|
|
text-align: right;
|
|
}
|
|
|
|
.chat-text {
|
|
font-size: 14px;
|
|
color: var(--main-text-color);
|
|
line-height: 1.5;
|
|
}
|
|
}
|