Wiinnieee commited on
Commit
d538ff5
·
verified ·
1 Parent(s): 147b038

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -137,10 +137,7 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
137
  submit_button = gr.Button("Submit")
138
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
139
 
140
- css = """
141
- #warning {background-color: #FFCCCB}
142
- .feedback textarea {font-size: 24px !important}
143
- """
144
 
145
  # Launch the Gradio app to allow user interaction
146
  demo.launch(share=True)
 
137
  submit_button = gr.Button("Submit")
138
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
139
 
140
+ with gr.Blocks(css=".gradio-container {background-color: red}") as demo:
 
 
 
141
 
142
  # Launch the Gradio app to allow user interaction
143
  demo.launch(share=True)