Fix button column width (#10)
Browse files- Fix button column width (1267b1568fcb04dc16f60e99a506b4b771139e52)
Co-authored-by: Ali Abid <[email protected]>
app.py
CHANGED
@@ -95,7 +95,7 @@ with gr.Blocks() as demo:
|
|
95 |
with gr.Row():
|
96 |
with gr.Column(scale=0.70):
|
97 |
msg = gr.Textbox(label="", placeholder="Chat Message Box")
|
98 |
-
with gr.Column(scale=0.30
|
99 |
with gr.Row():
|
100 |
submit = gr.Button("Submit")
|
101 |
clear = gr.Button("Clear")
|
|
|
95 |
with gr.Row():
|
96 |
with gr.Column(scale=0.70):
|
97 |
msg = gr.Textbox(label="", placeholder="Chat Message Box")
|
98 |
+
with gr.Column(scale=0.30):
|
99 |
with gr.Row():
|
100 |
submit = gr.Button("Submit")
|
101 |
clear = gr.Button("Clear")
|