rossiter78 commited on
Commit
fbae619
·
verified ·
1 Parent(s): 13cc9d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -72,7 +72,12 @@ chat = gr.ChatInterface(
72
  # Wrap in Blocks to add custom CSS and preserve theme
73
  with gr.Blocks(
74
  theme=gr.themes.Soft(),
75
- css=".footer {display: none !important;} .gradio-container-4-42-0 .footer {display: none !important;}"
 
 
 
 
 
76
  ) as demo:
77
  chat.render()
78
 
 
72
  # Wrap in Blocks to add custom CSS and preserve theme
73
  with gr.Blocks(
74
  theme=gr.themes.Soft(),
75
+ css="""
76
+ footer {display: none !important;}
77
+ .footer {display: none !important;}
78
+ #footer {display: none !important;}
79
+ .svelte-1p1dq6v {display: none !important;}
80
+ """
81
  ) as demo:
82
  chat.render()
83