ThatOneKevDev commited on
Commit
68fe40b
·
verified ·
1 Parent(s): e30a6ec

text/size update attempt

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -27,6 +27,7 @@ theme = gr.themes.Default(
27
  link_text_color='*secondary_800',
28
  code_background_fill='*neutral_200',
29
  code_background_fill_dark='*neutral_100',
 
30
  block_shadow='none',
31
  block_shadow_dark='none',
32
  form_gap_width='0px',
@@ -170,7 +171,7 @@ with gr.Blocks(theme=theme) as demo:
170
  with gr.Row():
171
  with gr.Column():
172
  question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
173
- answer = gr.Textbox(label="GloBot Response", placeholder="GloBot will respond here...", interactive=False, lines=10)
174
  submit_button = gr.Button("Submit")
175
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
176
 
 
27
  link_text_color='*secondary_800',
28
  code_background_fill='*neutral_200',
29
  code_background_fill_dark='*neutral_100',
30
+ block_info_text_size='*text_lg',
31
  block_shadow='none',
32
  block_shadow_dark='none',
33
  form_gap_width='0px',
 
171
  with gr.Row():
172
  with gr.Column():
173
  question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
174
+ answer = gr.Textbox(label="GloBot Response", placeholder="GloBot will respond here...", interactive=False, lines=20)
175
  submit_button = gr.Button("Submit")
176
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
177