Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1406,8 +1406,19 @@ st.markdown(
|
|
| 1406 |
<style>
|
| 1407 |
/* Adjust the width of the sidebar */
|
| 1408 |
[data-testid="stSidebar"] {
|
| 1409 |
-
width: 500px;
|
| 1410 |
}
|
| 1411 |
</style>
|
| 1412 |
""",
|
| 1413 |
-
unsafe_allow_html=True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1406 |
<style>
|
| 1407 |
/* Adjust the width of the sidebar */
|
| 1408 |
[data-testid="stSidebar"] {
|
| 1409 |
+
width: 500px; /* Change this value to set the width you want */
|
| 1410 |
}
|
| 1411 |
</style>
|
| 1412 |
""",
|
| 1413 |
+
unsafe_allow_html=True
|
| 1414 |
+
)
|
| 1415 |
+
|
| 1416 |
+
|
| 1417 |
+
|
| 1418 |
+
hide_streamlit_style = """
|
| 1419 |
+
<style>
|
| 1420 |
+
#MainMenu {visibility: hidden;}
|
| 1421 |
+
footer {visibility: hidden;}
|
| 1422 |
+
</style>
|
| 1423 |
+
"""
|
| 1424 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|