Mahavaury2 commited on
Commit
94c9a27
·
verified ·
1 Parent(s): c0a913b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -76,10 +76,13 @@ def generate(
76
  outputs.append(text)
77
  yield "".join(outputs)
78
 
79
- # CSS pastel (dégradé sur toute la page)
80
  custom_css = """
81
- .gradio-container {
82
- background: linear-gradient(135deg, #FDE2E2, #E2ECFD);
 
 
 
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