style: hide stop button
Browse files- streamlit_app.py +4 -0
streamlit_app.py
CHANGED
|
@@ -63,6 +63,10 @@ st.markdown("""
|
|
| 63 |
background: #1e1e2e;
|
| 64 |
border-radius: 0 6px 6px 0;
|
| 65 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
</style>
|
| 67 |
""", unsafe_allow_html=True)
|
| 68 |
|
|
|
|
| 63 |
background: #1e1e2e;
|
| 64 |
border-radius: 0 6px 6px 0;
|
| 65 |
}
|
| 66 |
+
/* Скрыть кнопку Stop */
|
| 67 |
+
button[kind="stop"] {
|
| 68 |
+
display: none !important;
|
| 69 |
+
}
|
| 70 |
</style>
|
| 71 |
""", unsafe_allow_html=True)
|
| 72 |
|