DeepLearning101 commited on
Commit
e47ffb8
·
verified ·
1 Parent(s): 5bc9aa3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -29,7 +29,7 @@ custom_css = """
29
  margin-bottom: 10px;
30
  }
31
  #chatbot {
32
- height: 500px;
33
  overflow-y: auto;
34
  background: #f7f7f7;
35
  border-radius: 10px;
@@ -203,9 +203,9 @@ examples = [
203
  ]
204
 
205
  with gr.Blocks(css=custom_css) as iface:
206
- gr.HTML('<div id="title">TITLE</div>')
207
- gr.HTML('<div id="subtitle">SUBTITLE</div>')
208
- gr.HTML('<div id="links">LINKS</div>')
209
  with gr.Row():
210
  chatbot = gr.Chatbot(elem_id="chatbot")
211
 
 
29
  margin-bottom: 10px;
30
  }
31
  #chatbot {
32
+ height: 300px;
33
  overflow-y: auto;
34
  background: #f7f7f7;
35
  border-radius: 10px;
 
203
  ]
204
 
205
  with gr.Blocks(css=custom_css) as iface:
206
+ gr.HTML(TITLE)
207
+ gr.HTML(SUBTITLE)
208
+ gr.HTML(LINKS)
209
  with gr.Row():
210
  chatbot = gr.Chatbot(elem_id="chatbot")
211