Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
-
# At the top of
|
| 4 |
def add_sticky_header_css():
|
| 5 |
st.markdown("""
|
| 6 |
<style>
|
|
@@ -29,10 +29,10 @@ def add_sticky_header_css():
|
|
| 29 |
</style>
|
| 30 |
""", unsafe_allow_html=True)
|
| 31 |
|
| 32 |
-
#
|
| 33 |
add_sticky_header_css()
|
| 34 |
|
| 35 |
-
# Rest of
|
| 36 |
|
| 37 |
# --- PAGE SETUP ---
|
| 38 |
type_text_page = st.Page(
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
# At the top of file with imports
|
| 4 |
def add_sticky_header_css():
|
| 5 |
st.markdown("""
|
| 6 |
<style>
|
|
|
|
| 29 |
</style>
|
| 30 |
""", unsafe_allow_html=True)
|
| 31 |
|
| 32 |
+
# At the start of main function or execution flow
|
| 33 |
add_sticky_header_css()
|
| 34 |
|
| 35 |
+
# Rest of app continues...
|
| 36 |
|
| 37 |
# --- PAGE SETUP ---
|
| 38 |
type_text_page = st.Page(
|