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