Spaces:
Running
Running
hide footer
Browse files
app.py
CHANGED
@@ -133,6 +133,12 @@ css='''
|
|
133 |
'''
|
134 |
st.markdown(css, unsafe_allow_html=True)
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
# initialize state
|
137 |
init_session_state()
|
138 |
|
|
|
133 |
'''
|
134 |
st.markdown(css, unsafe_allow_html=True)
|
135 |
|
136 |
+
hide_footer_style = """
|
137 |
+
<style>
|
138 |
+
.reportview-container .main footer {visibility: hidden;}
|
139 |
+
"""
|
140 |
+
st.markdown(hide_footer_style, unsafe_allow_html=True)
|
141 |
+
|
142 |
# initialize state
|
143 |
init_session_state()
|
144 |
|