Update utils.py
Browse files
utils.py
CHANGED
|
@@ -10,9 +10,9 @@ def go_to(page_name, from_callback=False):
|
|
| 10 |
st.rerun()
|
| 11 |
|
| 12 |
def add_bottom_navigation(previous_page, next_page):
|
| 13 |
-
col1, col2, col3 = st.columns([1, 3, 1])
|
| 14 |
-
|
| 15 |
st.markdown("---")
|
|
|
|
|
|
|
| 16 |
if previous_page is not None:
|
| 17 |
with col1:
|
| 18 |
if st.button("Previous"):
|
|
|
|
| 10 |
st.rerun()
|
| 11 |
|
| 12 |
def add_bottom_navigation(previous_page, next_page):
|
|
|
|
|
|
|
| 13 |
st.markdown("---")
|
| 14 |
+
col1, col2, col3 = st.columns([1, 4, 1])
|
| 15 |
+
|
| 16 |
if previous_page is not None:
|
| 17 |
with col1:
|
| 18 |
if st.button("Previous"):
|