Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,14 +7,21 @@ client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
|
7 |
|
8 |
css="""
|
9 |
.user_chat{
|
10 |
-
background:
|
|
|
|
|
|
|
11 |
}
|
12 |
.bot_chat{
|
13 |
-
background:
|
|
|
|
|
14 |
}
|
15 |
.chat_card{
|
16 |
-
background:
|
17 |
-
border-radius:15px;
|
|
|
|
|
18 |
}
|
19 |
"""
|
20 |
|
|
|
7 |
|
8 |
css="""
|
9 |
.user_chat{
|
10 |
+
background: #367bb9;
|
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 |
|