Lisibonny commited on
Commit
0cb944a
1 Parent(s): d68e2a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -146,14 +146,14 @@ def main():
146
  pagination = st.container()
147
 
148
 
149
- bottom_menu = st.columns((3))
150
- with bottom_menu:
151
- st.write("---")
152
  with bottom_menu[2]:
153
  total_pages = (ceil(cantidad_resultados / batch_size) if ceil(cantidad_resultados / batch_size) > 0 else 1)
154
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
155
 
156
  with bottom_menu[1]:
 
157
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
158
 
159
  with top_menu[0]:
 
146
  pagination = st.container()
147
 
148
 
149
+ bottom_menu = st.columns((2))
150
+
 
151
  with bottom_menu[2]:
152
  total_pages = (ceil(cantidad_resultados / batch_size) if ceil(cantidad_resultados / batch_size) > 0 else 1)
153
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
154
 
155
  with bottom_menu[1]:
156
+ st.write("---")
157
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
158
 
159
  with top_menu[0]: