Cartof commited on
Commit
cb98287
β€’
1 Parent(s): eb08f8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -108,8 +108,14 @@ with gr.Blocks() as demo:
108
  with gr.Column(scale=12):
109
  txt = gr.Textbox(show_label=False, placeholder="Please enter any of your needs here").style(container=False)
110
  with gr.Column(min_width=50, scale=1):
111
- submitBtn = gr.Button("πŸš€ Submit", variant="Primary")
112
- submitBtn.css(".g-button--primary { background-color: green; }")
 
 
 
 
 
 
113
  with gr.Row():
114
  emptyBtn = gr.Button("🧹 New conversation")
115
  retryBtn = gr.Button("πŸ”„ Resubmit")
 
108
  with gr.Column(scale=12):
109
  txt = gr.Textbox(show_label=False, placeholder="Please enter any of your needs here").style(container=False)
110
  with gr.Column(min_width=50, scale=1):
111
+ #submitBtn = gr.Button("πŸš€ Submit", variant="Primary")
112
+ submitBtn = gr.Button("πŸš€ Submit", variant="Primary").style(
113
+ background_color="#A238FF",
114
+ color="#FFFFFF",
115
+ border="none",
116
+ padding="10px 20px",
117
+ cursor="pointer"
118
+ )
119
  with gr.Row():
120
  emptyBtn = gr.Button("🧹 New conversation")
121
  retryBtn = gr.Button("πŸ”„ Resubmit")