czczup commited on
Commit
8fc777e
1 Parent(s): 9247610

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -9
app.py CHANGED
@@ -3,15 +3,11 @@ import streamlit as st
3
  st.set_page_config(layout="wide")
4
 
5
  hide_streamlit_style = """
6
- <style>
7
- /* Hide the Streamlit header and menu */
8
- header {visibility: hidden;}
9
- /* Optionally, hide the footer */
10
- .streamlit-footer {display: none;}
11
- /* Hide your specific div class, replace class name with the one you identified */
12
- .st-emotion-cache-uf99v8 {display: none;}
13
- </style>
14
- """
15
 
16
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
17
 
 
3
  st.set_page_config(layout="wide")
4
 
5
  hide_streamlit_style = """
6
+ <style>
7
+ /* Hide the Streamlit header and menu */
8
+ header {visibility: hidden;}
9
+ </style>
10
+ """
 
 
 
 
11
 
12
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
13