DHEIVER commited on
Commit
b853be0
·
verified ·
1 Parent(s): 511883e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -14
app.py CHANGED
@@ -192,17 +192,18 @@ custom_css = """
192
  footer {
193
  display: none !important;
194
  }
195
- /* Ocultar a barra de navegação superior */
 
196
  header.from-gray-50-to-white {
197
  display: none !important;
 
 
 
 
 
 
198
  }
199
- .header-holder {
200
- display: none !important;
201
- }
202
- .header-root {
203
- display: none !important;
204
- }
205
- /* Para garantir que não haja espaço em branco no topo */
206
  body {
207
  padding-top: 0 !important;
208
  margin-top: 0 !important;
@@ -210,12 +211,8 @@ body {
210
  #gradio-app {
211
  margin-top: 0 !important;
212
  }
213
- /* Remover qualquer espaço residual */
214
- .pt-0\.5 {
215
- padding-top: 0 !important;
216
- }
217
- .border-b {
218
- border-bottom: none !important;
219
  }
220
  """
221
 
 
192
  footer {
193
  display: none !important;
194
  }
195
+ /* Ocultar barra superior com seletor específico */
196
+ .from-gray-50-to-white.relative.z-40.border-b.border-gray-100.bg-gradient-to-t.via-white.pt-0\\.5.dark\\:via-gray-950,
197
  header.from-gray-50-to-white {
198
  display: none !important;
199
+ height: 0 !important;
200
+ min-height: 0 !important;
201
+ padding: 0 !important;
202
+ margin: 0 !important;
203
+ border: none !important;
204
+ overflow: hidden !important;
205
  }
206
+ /* Remover qualquer espaço em branco */
 
 
 
 
 
 
207
  body {
208
  padding-top: 0 !important;
209
  margin-top: 0 !important;
 
211
  #gradio-app {
212
  margin-top: 0 !important;
213
  }
214
+ .gradio-container {
215
+ margin-top: 0 !important;
 
 
 
 
216
  }
217
  """
218