Lisibonny commited on
Commit
57bca4c
1 Parent(s): f5a4e14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -141,7 +141,9 @@ def main():
141
  batch_size = 5
142
  pages = split_frame(df_results, batch_size)
143
  pagination = st.container()
144
- bottom_menu = st.columns((2,1,1))
 
 
145
  with bottom_menu[1]:
146
  total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
147
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
 
141
  batch_size = 5
142
  pages = split_frame(df_results, batch_size)
143
  pagination = st.container()
144
+ st.write("---")
145
+
146
+ bottom_menu = st.columns((2))
147
  with bottom_menu[1]:
148
  total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
149
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)