cakiki commited on
Commit
d50f165
·
1 Parent(s): 94b6118

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- with gr.Blocks(css="button {min-width:15px;background:transparent;}") as demo:
4
  with gr.Row():
5
- [gr.Button(value=str(i)).style(full_width=False) for i in range(10)]
6
 
7
  demo.launch(debug=True)
 
1
  import gradio as gr
2
 
3
+ with gr.Blocks(css="#b {min-width:15px;background:transparent;}") as demo:
4
  with gr.Row():
5
+ [gr.Button(value=str(i), elem_id="b").style(full_width=False) for i in range(10)]
6
 
7
  demo.launch(debug=True)