Update utils.py
Browse files
utils.py
CHANGED
|
@@ -59,6 +59,12 @@ def add_instruction_text(text_to_display):
|
|
| 59 |
|
| 60 |
st.markdown("---")
|
| 61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
# Define pipeline stages
|
| 63 |
pipeline_data = {
|
| 64 |
"Data Collection": {
|
|
|
|
| 59 |
|
| 60 |
st.markdown("---")
|
| 61 |
|
| 62 |
+
def add_red_text(text_to_display):
|
| 63 |
+
st.markdown(
|
| 64 |
+
f"<div style='text-align:center; color:#c0392b; font-size:20px;'>{text_to_display}</div>",
|
| 65 |
+
unsafe_allow_html=True,
|
| 66 |
+
)
|
| 67 |
+
|
| 68 |
# Define pipeline stages
|
| 69 |
pipeline_data = {
|
| 70 |
"Data Collection": {
|