georad commited on
Commit
4c3c906
·
verified ·
1 Parent(s): f236aaa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  import streamlit.components.v1 as components
3
 
4
  # At the top of file with imports
5
- def add_sticky_header_footer_css():
6
  st.markdown("""
7
  <style>
8
  /* Make Streamlit's stMainMenu button aqua */
@@ -31,7 +31,7 @@ def add_sticky_header_footer_css():
31
  """, unsafe_allow_html=True)
32
 
33
  # At the start of main function or execution flow
34
- # add_sticky_header_footer_css()
35
 
36
  # Rest of app continues...
37
 
 
2
  import streamlit.components.v1 as components
3
 
4
  # At the top of file with imports
5
+ def add_sticky_footer_css():
6
  st.markdown("""
7
  <style>
8
  /* Make Streamlit's stMainMenu button aqua */
 
31
  """, unsafe_allow_html=True)
32
 
33
  # At the start of main function or execution flow
34
+ # add_sticky_footer_css()
35
 
36
  # Rest of app continues...
37