Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1373,6 +1373,22 @@ if 'current_fig' in st.session_state:
|
|
| 1373 |
st.plotly_chart(st.session_state['current_fig'], use_container_width=True)
|
| 1374 |
|
| 1375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1376 |
hide_streamlit_style = """
|
| 1377 |
<style>
|
| 1378 |
#MainMenu {visibility: hidden;}
|
|
|
|
| 1373 |
st.plotly_chart(st.session_state['current_fig'], use_container_width=True)
|
| 1374 |
|
| 1375 |
|
| 1376 |
+
|
| 1377 |
+
|
| 1378 |
+
st.markdown(
|
| 1379 |
+
"""
|
| 1380 |
+
<style>
|
| 1381 |
+
/* Adjust the width of the sidebar */
|
| 1382 |
+
[data-testid="stSidebar"] {
|
| 1383 |
+
width: 500px; /* Change this value to set the width you want */
|
| 1384 |
+
}
|
| 1385 |
+
</style>
|
| 1386 |
+
""",
|
| 1387 |
+
unsafe_allow_html=True
|
| 1388 |
+
)
|
| 1389 |
+
|
| 1390 |
+
|
| 1391 |
+
|
| 1392 |
hide_streamlit_style = """
|
| 1393 |
<style>
|
| 1394 |
#MainMenu {visibility: hidden;}
|