dammy commited on
Commit
a91a966
·
1 Parent(s): fa326e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -103,12 +103,14 @@ with gr.Blocks() as demo:
103
  output = gr.Textbox(label="Output Box", style={"height": "100px", "margin-top": "20px"})
104
  chatbot = gr.Chatbot(height=240, placeholder="Ask me anything...", style={"margin-top": "20px"})
105
 
106
- with gr.Row():
107
- with gr.Column(scale=0.70):
108
- txt = gr.Textbox(
109
- show_label=False,
110
- placeholder="Enter a question",
111
- )
 
 
112
 
113
 
114
  # Event handler for uploading a PDF
 
103
  output = gr.Textbox(label="Output Box", style={"height": "100px", "margin-top": "20px"})
104
  chatbot = gr.Chatbot(height=240, placeholder="Ask me anything...", style={"margin-top": "20px"})
105
 
106
+ with gr.Row(style={"margin-top": "20px"}):
107
+ with gr.Column(scale=0.70):
108
+ # Styled Textbox
109
+ txt = gr.Textbox(
110
+ show_label=False,
111
+ placeholder="Enter a question",
112
+ style={"width": "100%", "height": "100px", "margin-bottom": "10px"}
113
+ )
114
 
115
 
116
  # Event handler for uploading a PDF