Omnibus commited on
Commit
82af1ed
1 Parent(s): e3e4bdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -7,14 +7,21 @@ client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
7
 
8
  css="""
9
  .user_chat{
10
- background:green;
 
 
 
11
  }
12
  .bot_chat{
13
- background:blue;
 
 
14
  }
15
  .chat_card{
16
- background:red;
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