jhauret commited on
Commit
2669c02
·
verified ·
1 Parent(s): 13ea032

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -85,7 +85,12 @@ def get_audio_row(dataset, index):
85
  return [sentence, phonemized_text, gender] + raw_audio_data
86
 
87
  # --- Build the Gradio Interface ---
88
- with gr.Blocks(css="footer {display: none !important}") as demo:
 
 
 
 
 
89
  # Change the app title
90
  gr.Markdown("# Vibravox Viewer")
91
 
 
85
  return [sentence, phonemized_text, gender] + raw_audio_data
86
 
87
  # --- Build the Gradio Interface ---
88
+ transparent_css = """
89
+ body, .gradio-container { background-color: transparent !important; }
90
+ .gr-panel { background-color: transparent !important; border: none !important; }
91
+ """
92
+
93
+ with gr.Blocks(css=transparent_css) as demo:
94
  # Change the app title
95
  gr.Markdown("# Vibravox Viewer")
96