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()