ddiddu commited on
Commit
8cd73f2
·
verified ·
1 Parent(s): 0c52c79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -37,12 +37,13 @@ examples = [
37
  "How can I reach out to Jisu?",
38
  ]
39
 
 
 
40
  css = """
41
  #chatbot {
42
  flex-grow: 1 !important;
43
- overflow: auto !important;
44
  }
45
- #col { height: calc(100vh - 112px - 16px) !important; }
46
  """
47
 
48
  with gr.Blocks(theme='gradio/soft', fill_height=True) as demo:
 
37
  "How can I reach out to Jisu?",
38
  ]
39
 
40
+ # Extend chatbot to fullheight
41
+ # Source: https://stackoverflow.com/questions/78536986/a-chat-with-gradio-how-to-modify-its-screen-appearance
42
  css = """
43
  #chatbot {
44
  flex-grow: 1 !important;
45
+ overflow: auto;
46
  }
 
47
  """
48
 
49
  with gr.Blocks(theme='gradio/soft', fill_height=True) as demo: