-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (42 loc) · 857 Bytes
/
styles.css
File metadata and controls
45 lines (42 loc) · 857 Bytes
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
.chat-container {
display: flex;
flex-direction: column;
gap: 20px;
/* Vertical space between messages */
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
.user-bubble {
background-color: #f1f1f1;
color: black;
padding: 15px;
border-radius: 15px;
max-width: 75%;
margin-bottom: 20px;
align-self: flex-start;
word-wrap: break-word;
margin-left: 10px;
}
.bot-bubble {
background-color: #007bff;
color: white;
padding: 15px;
border-radius: 15px;
max-width: 75%;
margin-bottom: 20px;
align-self: flex-end;
word-wrap: break-word;
margin-right: 10px;
}
.chat-input-container {
position: fixed;
bottom: 10px;
width: 100%;
max-width: 600px;
margin: 0 auto;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}