Skip to content

Commit b893344

Browse files
committed
Update audio_studio_pro.py
1 parent e31ec5f commit b893344

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

audio_studio_pro.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import spaces
33

44
from definers import (
5+
css,
56
apt_install,
67
install_faiss,
78
install_ffmpeg,
@@ -196,7 +197,7 @@ def main():
196197
button_secondary_text_color_dark="#ffffff", slider_color_dark="#6366f1"
197198
)
198199

199-
css = """
200+
_css = css() + """
200201
footer {display: none !important;}
201202
.gradio-container, main { min-width: 100% !important; margin: auto !important; }
202203
#main-row { gap: 20px; }
@@ -213,7 +214,7 @@ def main():
213214
format_choices = ["MP3", "WAV", "FLAC"]
214215
language_choices = sorted(list(set(language_codes.values())))
215216

216-
with gr.Blocks(theme=theme, title="Audio Studio Pro", css=css) as app:
217+
with gr.Blocks(theme=theme, title="Audio Studio Pro", css=_css) as app:
217218
gr.HTML("""<div id="header"><h1>Audio Studio Pro</h1><p>Your complete suite for professional audio production and AI-powered sound creation.</p></div>""")
218219

219220
tool_map = {

0 commit comments

Comments
 (0)