Spaces:
Running
Running
Update app.py
Browse files
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:
|