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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -84,13 +84,7 @@ def get_audio_row(dataset, index):
84
 
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
 
 
84
 
85
  return [sentence, phonemized_text, gender] + raw_audio_data
86
 
87
+ with gr.Blocks(css="footer {display: none !important}") as demo:
 
 
 
 
 
 
88
  # Change the app title
89
  gr.Markdown("# Vibravox Viewer")
90