Spaces:
Runtime error
Runtime error
HardWorkingStation
commited on
Commit
Β·
d8399fc
1
Parent(s):
331eff9
Initial commit
Browse files- src/app.py +6 -0
src/app.py
CHANGED
@@ -7,6 +7,12 @@ import tools
|
|
7 |
|
8 |
STEP_2 = STEP_3 = STEP_4 = STEP_5 = STEP_6 = False
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
st.set_page_config(
|
12 |
page_title="A/B Tests", page_icon="π", initial_sidebar_state="expanded"
|
|
|
7 |
|
8 |
STEP_2 = STEP_3 = STEP_4 = STEP_5 = STEP_6 = False
|
9 |
|
10 |
+
hide_menu_style = """
|
11 |
+
<style>
|
12 |
+
footer {visibility: hidden;}
|
13 |
+
</style>
|
14 |
+
"""
|
15 |
+
st.markdown(hide_menu_style, unsafe_allow_html=True)
|
16 |
|
17 |
st.set_page_config(
|
18 |
page_title="A/B Tests", page_icon="π", initial_sidebar_state="expanded"
|