Omnibus commited on
Commit
60d216a
1 Parent(s): fefdeba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -8,8 +8,7 @@ client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
8
  css="""
9
  .user_chat{
10
  background: #367bb9;
11
- color: white;
12
- border-radius: 10px 0px 10px 10px;
13
  padding: 10px;
14
  max-width: 100%;
15
  text-wrap: pretty;
@@ -19,7 +18,7 @@ css="""
19
  }
20
  .bot_chat{
21
  background: #1c3c9b;
22
- border-radius: 0px 10px 10px 10px;
23
  padding: 10px;
24
  max-width: 100%;
25
  text-wrap: pretty;
@@ -29,6 +28,7 @@ css="""
29
  }
30
  .chat_card{
31
  background: #253251;
 
32
  border-radius: 15px;
33
  border-width: thin;
34
  padding: 15px;
@@ -37,7 +37,7 @@ css="""
37
  flex-direction: column;
38
  justify-content: center;
39
  flex-wrap: wrap;
40
- width:500px;
41
  }
42
  """
43
 
 
8
  css="""
9
  .user_chat{
10
  background: #367bb9;
11
+ border-radius: 10px 10px 0px 10px;
 
12
  padding: 10px;
13
  max-width: 100%;
14
  text-wrap: pretty;
 
18
  }
19
  .bot_chat{
20
  background: #1c3c9b;
21
+ border-radius: 10px 10px 10px 0px;
22
  padding: 10px;
23
  max-width: 100%;
24
  text-wrap: pretty;
 
28
  }
29
  .chat_card{
30
  background: #253251;
31
+ color:white;
32
  border-radius: 15px;
33
  border-width: thin;
34
  padding: 15px;
 
37
  flex-direction: column;
38
  justify-content: center;
39
  flex-wrap: wrap;
40
+ max-width:100%;
41
  }
42
  """
43