Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -398,15 +398,24 @@ def make_key(row) -> tuple[str, str]:
|
|
| 398 |
# βββββββββββββββββββββββββββββββββββββ streamlit μμ μ μΈ
|
| 399 |
st.set_page_config(page_title="μ¬νμ λͺ¨λν¬μ΄ : λͺ¨μ(MoAi)", layout="centered")
|
| 400 |
|
| 401 |
-
st.markdown(
|
| 402 |
<style>
|
| 403 |
-
/*
|
| 404 |
-
|
| 405 |
position: fixed !important;
|
| 406 |
-
|
| 407 |
height: 100vh !important;
|
| 408 |
-
|
| 409 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 410 |
</style>
|
| 411 |
""", unsafe_allow_html=True)
|
| 412 |
|
|
|
|
| 398 |
# βββββββββββββββββββββββββββββββββββββ streamlit μμ μ μΈ
|
| 399 |
st.set_page_config(page_title="μ¬νμ λͺ¨λν¬μ΄ : λͺ¨μ(MoAi)", layout="centered")
|
| 400 |
|
| 401 |
+
st.markdown("""
|
| 402 |
<style>
|
| 403 |
+
/* μ¬μ΄λλ° κ³ μ */
|
| 404 |
+
[data-testid="stSidebar"]{
|
| 405 |
position: fixed !important;
|
| 406 |
+
top: 0; left: 0;
|
| 407 |
height: 100vh !important;
|
| 408 |
+
width: 250px !important;
|
| 409 |
+
min-width: 250px !important;
|
| 410 |
+
max-width: 250px !important;
|
| 411 |
+
overflow-y: auto !important;
|
| 412 |
+
z-index: 100;
|
| 413 |
+
}
|
| 414 |
+
|
| 415 |
+
/* λ³Έλ¬Έμ μ¬μ΄λλ°λ§νΌ μ€λ₯Έμͺ½μΌλ‘ λ°κΈ° (340 + 24 μ¬λ°±) */
|
| 416 |
+
[data-testid="stAppViewContainer"] > .main .block-container{
|
| 417 |
+
padding-left: 274px !important;
|
| 418 |
+
}
|
| 419 |
</style>
|
| 420 |
""", unsafe_allow_html=True)
|
| 421 |
|