Commit ·
b4bf7c4
1
Parent(s): 6240588
Bump base font to 17px and content width to 1700px for better legibility / less wasted side margin
Browse files
app.py
CHANGED
|
@@ -180,7 +180,7 @@ html, body, gradio-app, [class*="gradio-container"] {
|
|
| 180 |
}
|
| 181 |
|
| 182 |
/* Full-height shell ------------------------------------------------------- */
|
| 183 |
-
html, body { width: 100% !important; min-height: 100vh !important; margin: 0 !important; }
|
| 184 |
gradio-app {
|
| 185 |
display: block !important;
|
| 186 |
width: 100% !important;
|
|
@@ -197,15 +197,16 @@ gradio-app > div {
|
|
| 197 |
}
|
| 198 |
|
| 199 |
[class*="gradio-container"] {
|
| 200 |
-
max-width:
|
| 201 |
width: 100% !important;
|
| 202 |
min-width: 320px !important;
|
| 203 |
margin-left: auto !important;
|
| 204 |
margin-right: auto !important;
|
| 205 |
-
padding:
|
| 206 |
color: var(--q-text);
|
| 207 |
box-sizing: border-box !important;
|
| 208 |
font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
|
|
|
|
| 209 |
}
|
| 210 |
|
| 211 |
[class*="gradio-container"] *::selection { background: rgba(190,91,43,0.18); }
|
|
|
|
| 180 |
}
|
| 181 |
|
| 182 |
/* Full-height shell ------------------------------------------------------- */
|
| 183 |
+
html, body { width: 100% !important; min-height: 100vh !important; margin: 0 !important; font-size: 17px !important; }
|
| 184 |
gradio-app {
|
| 185 |
display: block !important;
|
| 186 |
width: 100% !important;
|
|
|
|
| 197 |
}
|
| 198 |
|
| 199 |
[class*="gradio-container"] {
|
| 200 |
+
max-width: 1700px !important;
|
| 201 |
width: 100% !important;
|
| 202 |
min-width: 320px !important;
|
| 203 |
margin-left: auto !important;
|
| 204 |
margin-right: auto !important;
|
| 205 |
+
padding: 28px 36px 72px !important;
|
| 206 |
color: var(--q-text);
|
| 207 |
box-sizing: border-box !important;
|
| 208 |
font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
|
| 209 |
+
font-size: 1rem !important;
|
| 210 |
}
|
| 211 |
|
| 212 |
[class*="gradio-container"] *::selection { background: rgba(190,91,43,0.18); }
|