Lisibonny commited on
Commit
d68e2a9
1 Parent(s): af3dec3

Update app.py

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