zakerytclarke commited on
Commit
b962028
·
verified ·
1 Parent(s): 45f3194

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -336,14 +336,14 @@ def main():
336
  s1, s2, s3 = st.columns([1, 1, 1])
337
 
338
  with s1:
339
- if st.button(choice1):
340
  user_input = choice1
341
 
342
  with s2:
343
- if st.button(choice2):
344
  user_input = choice2
345
  with s3:
346
- if st.button(choice3):
347
  user_input = choice3
348
 
349
  if user_input:
 
336
  s1, s2, s3 = st.columns([1, 1, 1])
337
 
338
  with s1:
339
+ if st.button(choice1, use_container_width=True):
340
  user_input = choice1
341
 
342
  with s2:
343
+ if st.button(choice2, use_container_width=True):
344
  user_input = choice2
345
  with s3:
346
+ if st.button(choice3, use_container_width=True):
347
  user_input = choice3
348
 
349
  if user_input: