Commit ·
6766163
1
Parent(s): 242aff0
css: one-per-row Open-release cards on mobile (fix char-wrapped labels)
Browse files
app.py
CHANGED
|
@@ -1226,6 +1226,11 @@ footer { display: none !important; }
|
|
| 1226 |
white-space: nowrap !important;
|
| 1227 |
border-radius: 12px !important;
|
| 1228 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1229 |
}
|
| 1230 |
"""
|
| 1231 |
|
|
|
|
| 1226 |
white-space: nowrap !important;
|
| 1227 |
border-radius: 12px !important;
|
| 1228 |
}
|
| 1229 |
+
/* Open-release cards: one per row on mobile. The 2-up grid squeezes each
|
| 1230 |
+
card to ~87px, char-wrapping the Paper / Code / Data / Model labels. */
|
| 1231 |
+
.resource-grid {
|
| 1232 |
+
grid-template-columns: 1fr !important;
|
| 1233 |
+
}
|
| 1234 |
}
|
| 1235 |
"""
|
| 1236 |
|