Spaces:
Running
Running
hoshingakag
commited on
Commit
•
7c24283
1
Parent(s):
ecbd714
Update app.py
Browse files
app.py
CHANGED
@@ -48,7 +48,7 @@ if __name__ == "__main__":
|
|
48 |
logger = logging.getLogger('app')
|
49 |
|
50 |
try:
|
51 |
-
with gr.Blocks() as app:
|
52 |
chatbot = gr.Chatbot(
|
53 |
bubble_full_width=False,
|
54 |
container=True,
|
@@ -60,6 +60,7 @@ if __name__ == "__main__":
|
|
60 |
label="Type your message...",
|
61 |
placeholder="Hi Gerard, can you introduce yourself?",
|
62 |
container=False,
|
|
|
63 |
)
|
64 |
with gr.Row():
|
65 |
clear = gr.Button("Clear", scale=1)
|
|
|
48 |
logger = logging.getLogger('app')
|
49 |
|
50 |
try:
|
51 |
+
with gr.Blocks(css=".input textarea {font-size: 16px !important}") as app:
|
52 |
chatbot = gr.Chatbot(
|
53 |
bubble_full_width=False,
|
54 |
container=True,
|
|
|
60 |
label="Type your message...",
|
61 |
placeholder="Hi Gerard, can you introduce yourself?",
|
62 |
container=False,
|
63 |
+
elem_classes="input"
|
64 |
)
|
65 |
with gr.Row():
|
66 |
clear = gr.Button("Clear", scale=1)
|