minor updates for responsiveness on mobile
Browse files
app.py
CHANGED
|
@@ -113,6 +113,7 @@ for i, search in enumerate(quick_searches):
|
|
| 113 |
with cols[i+1]: # Use i+1 since the first column is for the label
|
| 114 |
st.button(search, key=f"quick_search_{search}", on_click=set_suggested_search,
|
| 115 |
args=(search, min_results_params[i]))
|
|
|
|
| 116 |
|
| 117 |
# Literal text search and ID filtering
|
| 118 |
search_col1, search_col2, search_col3, search_col4, search_col5 = st.columns([3, 1, 1.5, 3, 1])
|
|
@@ -277,7 +278,7 @@ if len(selected_rows) > 0:
|
|
| 277 |
|
| 278 |
# Show confirmation message
|
| 279 |
vote_type = "upvoted" if upvote else "downvoted"
|
| 280 |
-
st.success(f"You {vote_type} this conversation. Thank you for your
|
| 281 |
|
| 282 |
# Footer
|
| 283 |
st.write("---")
|
|
|
|
| 113 |
with cols[i+1]: # Use i+1 since the first column is for the label
|
| 114 |
st.button(search, key=f"quick_search_{search}", on_click=set_suggested_search,
|
| 115 |
args=(search, min_results_params[i]))
|
| 116 |
+
st.write("---")
|
| 117 |
|
| 118 |
# Literal text search and ID filtering
|
| 119 |
search_col1, search_col2, search_col3, search_col4, search_col5 = st.columns([3, 1, 1.5, 3, 1])
|
|
|
|
| 278 |
|
| 279 |
# Show confirmation message
|
| 280 |
vote_type = "upvoted" if upvote else "downvoted"
|
| 281 |
+
st.success(f"You {vote_type} this conversation. Thank you for your contribution!")
|
| 282 |
|
| 283 |
# Footer
|
| 284 |
st.write("---")
|