Spaces:
Running
Running
File size: 738 Bytes
85ef17d |
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
.start-wrapper {
display: flex;
justify-content: center;
padding: 24px;
}
.chat-card {
display: flex;
flex-direction: column;
height: 100%;
}
.chat-history {
flex: 1;
overflow-y: auto;
padding: 16px;
background: #fafafa;
}
.msg-row {
display: flex;
margin: 6px 0;
&.me {
justify-content: flex-end;
.bubble {
background: #d0f0ff;
color: #000;
}
}
&.bot {
justify-content: flex-start;
.bubble {
background: #eeeeee;
color: #000;
}
}
.bubble {
max-width: 70%;
padding: 8px 12px;
border-radius: 16px;
line-height: 1.4;
word-wrap: break-word;
}
}
.input-row {
display: flex;
padding: 8px 16px;
.flex-1 {
flex: 1;
}
}
|