Spaces:
Running on Zero
Running on Zero
Commit ·
0d54e7a
1
Parent(s): f65dd2c
Remove excess padding on mobile viewport
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -428,6 +428,22 @@ input[type=range] {
|
|
| 428 |
|
| 429 |
/* ---------- Footer hide ---------- */
|
| 430 |
footer { display: none !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 431 |
"""
|
| 432 |
|
| 433 |
|
|
|
|
| 428 |
|
| 429 |
/* ---------- Footer hide ---------- */
|
| 430 |
footer { display: none !important; }
|
| 431 |
+
|
| 432 |
+
/* ---------- Mobile: remove excess padding ---------- */
|
| 433 |
+
@media (max-width: 768px) {
|
| 434 |
+
.gradio-container {
|
| 435 |
+
padding: 12px 8px !important;
|
| 436 |
+
}
|
| 437 |
+
.masthead-meta {
|
| 438 |
+
justify-content: center;
|
| 439 |
+
font-size: 10px;
|
| 440 |
+
gap: 4px 12px;
|
| 441 |
+
}
|
| 442 |
+
.lede {
|
| 443 |
+
font-size: 15px;
|
| 444 |
+
text-align: left;
|
| 445 |
+
}
|
| 446 |
+
}
|
| 447 |
"""
|
| 448 |
|
| 449 |
|