gradio-test-vh / app.py
Coloring's picture
Create app.py
f380f73 verified
raw
history blame contribute delete
191 Bytes
import gradio as gr
css = """
.example-wrapper {
height: 100vh;
}
"""
with gr.Blocks(css=css) as demo:
with gr.Row(elem_classes="example-wrapper"):
gr.Textbox()
demo.launch()