Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,15 +3,11 @@ import streamlit as st
|
|
3 |
st.set_page_config(layout="wide")
|
4 |
|
5 |
hide_streamlit_style = """
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
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 |
|