Commit Β·
2e0c97a
1
Parent(s): 8ef893d
Using the space properly
Browse files- visualization/app.py +13 -0
visualization/app.py
CHANGED
|
@@ -35,6 +35,19 @@ st.set_page_config(
|
|
| 35 |
initial_sidebar_state=config['page_config']['initial_sidebar_state']
|
| 36 |
)
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
# ββ Authentication gate βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 39 |
# render_login_page() calls st.stop() when the user is not authenticated,
|
| 40 |
# so nothing below this point executes until login succeeds.
|
|
|
|
| 35 |
initial_sidebar_state=config['page_config']['initial_sidebar_state']
|
| 36 |
)
|
| 37 |
|
| 38 |
+
|
| 39 |
+
st.markdown("""
|
| 40 |
+
<style>
|
| 41 |
+
.block-container {
|
| 42 |
+
max-width: 100% !important;
|
| 43 |
+
padding-left: 2rem !important;
|
| 44 |
+
padding-right: 2rem !important;
|
| 45 |
+
}
|
| 46 |
+
</style>
|
| 47 |
+
""", unsafe_allow_html=True)
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
|
| 51 |
# ββ Authentication gate βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 52 |
# render_login_page() calls st.stop() when the user is not authenticated,
|
| 53 |
# so nothing below this point executes until login succeeds.
|