green commited on
Commit
aabb21b
·
1 Parent(s): 507907a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -235,12 +235,6 @@ html = """
235
  flex-direction: row-reverse;
236
  }
237
 
238
- header > .toolbar {
239
- flex-direction: row-reverse;
240
- left: 1rem;
241
- right: auto;
242
- }
243
-
244
  .sidebar .sidebar-content {
245
  transition: margin-right .3s, box-shadow .3s;
246
  }
@@ -261,7 +255,7 @@ st.markdown(html, unsafe_allow_html=True)
261
 
262
  st.sidebar.subheader("Topics")
263
  for i in list(clusters.keys()):
264
- st.write(f"{i} : {len(clusters[i])}")
265
 
266
  st.session_state['dt'] = dt.now()
267
  # Form used to take 3 menu inputs
 
235
  flex-direction: row-reverse;
236
  }
237
 
 
 
 
 
 
 
238
  .sidebar .sidebar-content {
239
  transition: margin-right .3s, box-shadow .3s;
240
  }
 
255
 
256
  st.sidebar.subheader("Topics")
257
  for i in list(clusters.keys()):
258
+ st.sidebar.write(f"{i} : {len(clusters[i])}")
259
 
260
  st.session_state['dt'] = dt.now()
261
  # Form used to take 3 menu inputs