Update verbatim.css
Browse files- verbatim.css +19 -0
verbatim.css
CHANGED
|
@@ -217,3 +217,22 @@ html, body, .gradio-container {
|
|
| 217 |
.gradio-container button.vb-cta {
|
| 218 |
margin: 0 !important;
|
| 219 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 217 |
.gradio-container button.vb-cta {
|
| 218 |
margin: 0 !important;
|
| 219 |
}
|
| 220 |
+
|
| 221 |
+
/* Centrage parfait du bouton dans son bloc de droite */
|
| 222 |
+
#vb-cta-cell {
|
| 223 |
+
display: flex !important;
|
| 224 |
+
align-items: center !important; /* centre verticalement */
|
| 225 |
+
justify-content: center !important; /* centre horizontalement */
|
| 226 |
+
min-height: 160px; /* donne de la hauteur au bloc */
|
| 227 |
+
padding: 12px 16px !important;
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
#vb-cta-cell > .wrap { /* le wrapper Gradio du bouton */
|
| 231 |
+
width: 100% !important;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
#vb-cta-cell button.vb-cta {
|
| 235 |
+
margin: 0 auto !important; /* centre le bouton */
|
| 236 |
+
max-width: 380px; /* optionnel : limite la largeur */
|
| 237 |
+
display: inline-flex !important;
|
| 238 |
+
}
|