23 lines
552 B
CSS
23 lines
552 B
CSS
|
|
[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;
|
||
|
|
}
|