Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,33 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
# --- SHARED ON ALL PAGES ---
|
4 |
st.logo(image="images/menu_book_60dp_75FBFD.png")
|
5 |
st.sidebar.title("SBS V2.0 Mapper")
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
hide_streamlit_style = """
|
4 |
+
<style>
|
5 |
+
|
6 |
+
div[data-testid="stStatusWidget"]{
|
7 |
+
visibility: visible;
|
8 |
+
height: 400px;
|
9 |
+
position: sticky;
|
10 |
+
}
|
11 |
+
div[data-testid="stBaseButton-header"]{
|
12 |
+
visibility: visible;
|
13 |
+
height: auto;
|
14 |
+
position: sticky;
|
15 |
+
}
|
16 |
+
div[data-testid="stToolbar"]{
|
17 |
+
visibility: visible;
|
18 |
+
height: auto;
|
19 |
+
position: sticky;
|
20 |
+
}
|
21 |
+
div[data-testid="stDecoration"]{
|
22 |
+
visibility: visible;
|
23 |
+
height: auto;
|
24 |
+
position: sticky;
|
25 |
+
}
|
26 |
+
|
27 |
+
</style>
|
28 |
+
"""
|
29 |
+
|
30 |
+
|
31 |
# --- SHARED ON ALL PAGES ---
|
32 |
st.logo(image="images/menu_book_60dp_75FBFD.png")
|
33 |
st.sidebar.title("SBS V2.0 Mapper")
|