Cartof commited on
Commit
07a4f94
1 Parent(s): 2063ebd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -98,7 +98,10 @@ Will not describe your needs to ChatGPT?You Use [ChatGPT Shortcut](https://new
98
 
99
  </div>
100
  """
101
- with gr.Blocks() as demo:
 
 
 
102
  gr.HTML(title)
103
  chatbot = gr.Chatbot().style(color_map=("#A238FF", "#A238FF"))
104
 
 
98
 
99
  </div>
100
  """
101
+
102
+ block = gr.Blocks(css=".gradio-container {background-color: lightgray}")
103
+
104
+ with block as demo:
105
  gr.HTML(title)
106
  chatbot = gr.Chatbot().style(color_map=("#A238FF", "#A238FF"))
107