I am trying to force Gradio to show a white background colour ALL the time in all browsers. My code below works to force white colour on my desktop (using Firefox) but on mobile it’s still showing the typical default Gradio black background. How to change this behaviour to permanently show a white background in all devices? Thank you
demo = gr.Interface(lambda x:x+x, inputs=gr.Textbox(label='Test'), outputs=gr.Textbox(label='test2'),
css=".gradio-container {background-color: white} ").launch(share=False)