Make screen 100 view width
Browse files
app.py
CHANGED
@@ -312,7 +312,7 @@ def get_patient_conversation():
|
|
312 |
|
313 |
# --- Gradio App ---
|
314 |
|
315 |
-
with gr.Blocks(css=".gradio-container {height: 100vh; overflow: hidden;}") as demo:
|
316 |
gr.Markdown("<h2 style='text-align: center;'>Radiologist's Companion</h2>")
|
317 |
default_model = gr.State(model_choices[0])
|
318 |
|
|
|
312 |
|
313 |
# --- Gradio App ---
|
314 |
|
315 |
+
with gr.Blocks(css=".gradio-container {height: 100vh; width: 100vw; overflow: hidden;}") as demo:
|
316 |
gr.Markdown("<h2 style='text-align: center;'>Radiologist's Companion</h2>")
|
317 |
default_model = gr.State(model_choices[0])
|
318 |
|