spaces-resizing / app.py
freddyaboulton's picture
Update app.py
ed61e9c verified
raw
history blame contribute delete
225 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(interactive=True, label="Textbox")
demo.launch()