blob: 8931d3bc6cfc7e8f2ce9e5ffb9827cb73f2bdd5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[data-component="assistant-message"] {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
[data-component="user-message"] {
font-family: var(--font-family-sans);
font-size: var(--font-size-small);
font-style: normal;
font-weight: var(--font-weight-regular);
line-height: var(--line-height-large);
letter-spacing: var(--letter-spacing-normal);
color: var(--text-base);
display: -webkit-box;
line-clamp: 3;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
|