chansung commited on
Commit
9b67ac2
·
1 Parent(s): 76c51c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -105,11 +105,11 @@ with gr.Blocks() as block:
105
 
106
  with gr.Row():
107
  with gr.Column(scale=1, min_width=100):
108
- first = gr.Button("1st")
109
- second = gr.Button("2nd")
110
- third = gr.Button("3rd")
111
- fourth = gr.Button("4th")
112
- fifth = gr.Button("5th")
113
  with gr.Column(scale=4):
114
  chatbot = gr.Chatbot(elem_id='chatbot')
115
  instruction_txtbox = gr.Textbox(placeholder="What do you want to say to AI?", label="Instruction")
 
105
 
106
  with gr.Row():
107
  with gr.Column(scale=1, min_width=100):
108
+ first = gr.Button("1st", elem_classes=["custom-btn"])
109
+ second = gr.Button("2nd", elem_classes=["custom-btn"])
110
+ third = gr.Button("3rd", elem_classes=["custom-btn"])
111
+ fourth = gr.Button("4th", elem_classes=["custom-btn"])
112
+ fifth = gr.Button("5th", elem_classes=["custom-btn"])
113
  with gr.Column(scale=4):
114
  chatbot = gr.Chatbot(elem_id='chatbot')
115
  instruction_txtbox = gr.Textbox(placeholder="What do you want to say to AI?", label="Instruction")