pagination / app.py
cakiki's picture
Update app.py
e808661
raw
history blame
209 Bytes
import gradio as gr
with gr.Blocks(css=".button {min-width: min(15px,100%);}") as demo:
with gr.Row():
[gr.Button(value=str(i)).style(full_width=False) for i in range(10)]
demo.launch(debug=True)