Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -76,10 +76,13 @@ def generate(
|
|
76 |
outputs.append(text)
|
77 |
yield "".join(outputs)
|
78 |
|
79 |
-
# CSS
|
80 |
custom_css = """
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
83 |
}
|
84 |
"""
|
85 |
|
|
|
76 |
outputs.append(text)
|
77 |
yield "".join(outputs)
|
78 |
|
79 |
+
# CSS pour appliquer le dégradé pastel à TOUTE la page
|
80 |
custom_css = """
|
81 |
+
html, body {
|
82 |
+
height: 100%;
|
83 |
+
margin: 0;
|
84 |
+
padding: 0;
|
85 |
+
background: linear-gradient(135deg, #FDE2E2, #E2ECFD) !important;
|
86 |
}
|
87 |
"""
|
88 |
|