Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,17 +11,28 @@ css="""
|
|
11 |
border-radius: 10px 0px 10px 10px;
|
12 |
padding: 10px;
|
13 |
margin-bottom: 10px;
|
|
|
|
|
14 |
}
|
15 |
.bot_chat{
|
16 |
background: #1c3c9b;
|
17 |
border-radius: 0px 10px 10px 10px;
|
18 |
padding: 10px;
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
.chat_card{
|
21 |
background: #253251;
|
22 |
border-radius: 15px;
|
23 |
border-width: thin;
|
24 |
padding: 15px;
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
"""
|
27 |
|
|
|
11 |
border-radius: 10px 0px 10px 10px;
|
12 |
padding: 10px;
|
13 |
margin-bottom: 10px;
|
14 |
+
max-width: 100%;
|
15 |
+
text-wrap: pretty;
|
16 |
}
|
17 |
.bot_chat{
|
18 |
background: #1c3c9b;
|
19 |
border-radius: 0px 10px 10px 10px;
|
20 |
padding: 10px;
|
21 |
+
max-width: 100%;
|
22 |
+
text-wrap: pretty;
|
23 |
+
margin-bottom: 10px;
|
24 |
+
|
25 |
}
|
26 |
.chat_card{
|
27 |
background: #253251;
|
28 |
border-radius: 15px;
|
29 |
border-width: thin;
|
30 |
padding: 15px;
|
31 |
+
font-family: system-ui;
|
32 |
+
display: flex;
|
33 |
+
flex-direction: column;
|
34 |
+
justify-content: center;
|
35 |
+
flex-wrap: wrap;
|
36 |
}
|
37 |
"""
|
38 |
|