JerLag commited on
Commit
b03426b
·
verified ·
1 Parent(s): c38e468

Update verbatim.css

Browse files
Files changed (1) hide show
  1. verbatim.css +14 -0
verbatim.css CHANGED
@@ -203,3 +203,17 @@ html, body, .gradio-container {
203
  background: transparent !important;
204
  border: 0 !important;
205
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  background: transparent !important;
204
  border: 0 !important;
205
  }
206
+
207
+ /* Centrer le bouton "Lancer l'analyse" dans sa carte */
208
+ .gradio-container .wrap:has(.vb-cta) {
209
+ display: flex !important;
210
+ align-items: center !important; /* centrage vertical */
211
+ justify-content: center !important; /* centrage horizontal */
212
+ min-height: 140px; /* donne de la hauteur pour bien centrer */
213
+ padding: 12px 16px !important;
214
+ }
215
+
216
+ /* Le bouton lui-même : pas de marge parasite */
217
+ .gradio-container button.vb-cta {
218
+ margin: 0 !important;
219
+ }