Hi,
from the docs:
https://gradio.app/custom_CSS_and_JS/
Did anyone tried the below code and manage to get it to work?
with gr.Blocks(css="#warning {color: red}") as demo:
box1 = gr.Textbox(value="Good Job")
box2 = gr.Textbox(value="Failure", elem_id="warning")
It didn’t work for me, there is no red color on box2
Thank you!