f64
commited on
Commit
·
cfb709b
1
Parent(s):
7647934
app.py
CHANGED
|
@@ -2,12 +2,7 @@ import pandas as pd
|
|
| 2 |
import streamlit as st
|
| 3 |
|
| 4 |
# remove decoration and popup menu button at top
|
| 5 |
-
st.markdown(""
|
| 6 |
-
<style>
|
| 7 |
-
header[data-testid="stHeader"] > div[data-testid="stToolbar"] { display:none }
|
| 8 |
-
header[data-testid="stHeader"] > div[data-testid="stDecoration"] { display:none }
|
| 9 |
-
</style>
|
| 10 |
-
""", unsafe_allow_html=True)
|
| 11 |
|
| 12 |
df = pd.DataFrame(
|
| 13 |
[
|
|
|
|
| 2 |
import streamlit as st
|
| 3 |
|
| 4 |
# remove decoration and popup menu button at top
|
| 5 |
+
st.markdown("<style> header[data-testid='stHeader'] { display:none }", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
df = pd.DataFrame(
|
| 8 |
[
|