Zaiiida commited on
Commit
1a0e1f7
·
verified ·
1 Parent(s): 80d1a24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -20
app.py CHANGED
@@ -210,6 +210,7 @@ class CustomTheme(gr.themes.Base):
210
  "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap",
211
  )
212
 
 
213
  css = """
214
  /* Универсальный сброс стилей */
215
  *, *::before, *::after {
@@ -221,28 +222,26 @@ html, body {
221
  background-color: #191a1e !important;
222
  margin: 0 !important;
223
  padding: 0 !important;
224
- width: 100vw;
225
- height: 100vh;
226
- overflow: hidden;
227
  }
228
 
229
  /* Перекрываем потенциальные обёртки Hugging Face */
230
- #root, #__next, body > div, body > div > div {
231
  background-color: #191a1e !important;
232
  margin: 0 !important;
233
  padding: 0 !important;
234
  border: none !important;
235
- width: 100%;
236
- height: 100%;
237
- overflow: hidden;
238
  }
239
 
240
  /* Основные контейнеры Gradio */
241
  .gradio-container, .gr-app {
242
  background-color: #191a1e !important;
243
- width: 100%;
244
- height: 100%;
245
- overflow: hidden;
246
  }
247
 
248
  /* Все внутренние блоки Gradio */
@@ -256,20 +255,20 @@ html, body {
256
  .generate-button {
257
  background-color: #5271FF !important;
258
  color: #FFFFFF !important;
259
- border: none;
260
- font-weight: bold;
261
- font-size: 1.2em;
262
- padding: 0.75em 2em;
263
- border-radius: 0.3em;
264
  }
265
 
266
  /* Скрываем footer */
267
  footer {
268
- visibility: hidden;
269
- height: 0;
270
- margin: 0;
271
- padding: 0;
272
- overflow: hidden;
273
  }
274
  """
275
 
 
210
  "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap",
211
  )
212
 
213
+ # Обновленный CSS для полного перекрашивания
214
  css = """
215
  /* Универсальный сброс стилей */
216
  *, *::before, *::after {
 
222
  background-color: #191a1e !important;
223
  margin: 0 !important;
224
  padding: 0 !important;
225
+ width: 100vw !important;
226
+ height: 100vh !important;
227
+ /* Не используем overflow: hidden, чтобы фон мог растянуться */
228
  }
229
 
230
  /* Перекрываем потенциальные обёртки Hugging Face */
231
+ #root, #__next, body > div, body > div > div, body > div > div > div {
232
  background-color: #191a1e !important;
233
  margin: 0 !important;
234
  padding: 0 !important;
235
  border: none !important;
236
+ width: 100% !important;
237
+ height: 100% !important;
 
238
  }
239
 
240
  /* Основные контейнеры Gradio */
241
  .gradio-container, .gr-app {
242
  background-color: #191a1e !important;
243
+ width: 100% !important;
244
+ height: 100% !important;
 
245
  }
246
 
247
  /* Все внутренние блоки Gradio */
 
255
  .generate-button {
256
  background-color: #5271FF !important;
257
  color: #FFFFFF !important;
258
+ border: none !important;
259
+ font-weight: bold !important;
260
+ font-size: 1.2em !important;
261
+ padding: 0.75em 2em !important;
262
+ border-radius: 0.3em !important;
263
  }
264
 
265
  /* Скрываем footer */
266
  footer {
267
+ visibility: hidden !important;
268
+ height: 0 !important;
269
+ margin: 0 !important;
270
+ padding: 0 !important;
271
+ overflow: hidden !important;
272
  }
273
  """
274