pagination / app.py
cakiki's picture
Update app.py
430daa6
raw
history blame contribute delete
242 Bytes
import gradio as gr
with gr.Blocks(css="#b {min-width:15px;background:transparent;border:white;}") as demo:
with gr.Row():
[gr.Button(value=str(i), elem_id="b").style(full_width=False) for i in range(10)]
demo.launch(debug=True)