Spaces:
Sleeping
Sleeping
Update alert text color to black for better readability
Browse files- src/streamlit_app.py +14 -0
src/streamlit_app.py
CHANGED
@@ -378,6 +378,20 @@ st.markdown("""
|
|
378 |
border-radius: 1rem;
|
379 |
margin: 1.5rem 0;
|
380 |
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
}
|
382 |
</style>
|
383 |
""", unsafe_allow_html=True)
|
|
|
378 |
border-radius: 1rem;
|
379 |
margin: 1.5rem 0;
|
380 |
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
|
381 |
+
color: #2E2E2E;
|
382 |
+
}
|
383 |
+
|
384 |
+
.alert strong {
|
385 |
+
color: #2E2E2E;
|
386 |
+
}
|
387 |
+
|
388 |
+
.alert a {
|
389 |
+
color: #2E2E2E;
|
390 |
+
text-decoration: underline;
|
391 |
+
}
|
392 |
+
|
393 |
+
.alert a:hover {
|
394 |
+
color: #000000;
|
395 |
}
|
396 |
</style>
|
397 |
""", unsafe_allow_html=True)
|