style: change link color
Browse files
app.py
CHANGED
@@ -120,8 +120,15 @@ with column_proof:
|
|
120 |
prompt_element = st.chat_input("Comment puis je vous aider aujourd'hui?")
|
121 |
|
122 |
st.markdown("""
|
123 |
-
<style> textarea.st-co {color: #212121
|
124 |
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
with column_chat:
|
127 |
if prompt := prompt_element:
|
|
|
120 |
prompt_element = st.chat_input("Comment puis je vous aider aujourd'hui?")
|
121 |
|
122 |
st.markdown("""
|
123 |
+
<style> textarea.st-co {color: #212121 } </style>
|
124 |
""", unsafe_allow_html=True)
|
125 |
+
st.markdown("""
|
126 |
+
<style> textarea.st-dv { caret-color: red } </style>
|
127 |
+
""", unsafe_allow_html=True)
|
128 |
+
st.markdown(
|
129 |
+
"""<style> .st-emotion-cache-15vaqhh a {color: #CCCCCC } </style>""",
|
130 |
+
unsafe_allow_html=True
|
131 |
+
)
|
132 |
|
133 |
with column_chat:
|
134 |
if prompt := prompt_element:
|