Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -150,7 +150,9 @@ body {background: linear-gradient(to bottom right, #90ee90, #ffb6c1);}
|
|
| 150 |
# =====================
|
| 151 |
# GRADIO UI
|
| 152 |
# =====================
|
| 153 |
-
with gr.Blocks(
|
|
|
|
|
|
|
| 154 |
gr.Markdown("## 🌸 AI Study Wizard — Pink + Green Gradient")
|
| 155 |
|
| 156 |
# SIGNUP
|
|
|
|
| 150 |
# =====================
|
| 151 |
# GRADIO UI
|
| 152 |
# =====================
|
| 153 |
+
with gr.Blocks() as demo:
|
| 154 |
+
# Inject CSS for older Gradio versions
|
| 155 |
+
gr.HTML(f"<style>{custom_css}</style>")
|
| 156 |
gr.Markdown("## 🌸 AI Study Wizard — Pink + Green Gradient")
|
| 157 |
|
| 158 |
# SIGNUP
|