Spaces:
Runtime error
Runtime error
File size: 794 Bytes
85aafd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
.user-message {
display: flex;
justify-content: flex-end;
align-items: center;
margin: 10px 0;
color: white;
}
.user-message .stMarkdown {
background-color: #3d92c4;
border-radius: 15px;
padding: 10px;
max-width: 70%;
word-wrap: break-word;
}
.user-avatar {
order: 2;
margin-left: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
}
.assistant-message {
display: flex;
align-items: center;
margin: 10px 0;
}
.assistant-message .stMarkdown {
background-color: #D9D9D9;
border-radius: 15px;
padding: 10px;
max-width: 70%;
word-wrap: break-word;
}
.assistant-avatar {
margin-right: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
}
|