Update app.py
Browse files
app.py
CHANGED
@@ -44,9 +44,9 @@ import gradio as grad
|
|
44 |
|
45 |
css = """
|
46 |
.chatbox {display:flex;flex-direction:column}
|
47 |
-
.msg {padding:
|
48 |
-
.msg.user {background-color:
|
49 |
-
.msg.bot {background-color:orange;align-self:self-end}
|
50 |
.footer {display:none !important}
|
51 |
"""
|
52 |
text=grad.inputs.Textbox(placeholder="Lets chat")
|
|
|
44 |
|
45 |
css = """
|
46 |
.chatbox {display:flex;flex-direction:column}
|
47 |
+
.msg {padding:5px;margin-bottom:5px;border-radius:5px;width:75%}
|
48 |
+
.msg.user {background-color:lightblue;color:white}
|
49 |
+
.msg.bot {background-color:orange;color:white,align-self:self-end}
|
50 |
.footer {display:none !important}
|
51 |
"""
|
52 |
text=grad.inputs.Textbox(placeholder="Lets chat")
|