Skip to content

Commit c0ddda3

Browse files
authored
Fix media query format
1 parent 52190ca commit c0ddda3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/assets/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ table td {
420420
Ideally we'd also switch to the mobile left nav at
421421
around < 1000px but that requires upstream changes.
422422
*/
423-
@media (max-width: 80em) {
423+
@media (width <= 80em) {
424424
.content-wrapper {
425425
gap: 2em;
426426
grid-template-columns: minmax(20ch, 80ch) 10em;
@@ -431,7 +431,7 @@ table td {
431431
}
432432
}
433433

434-
@media (max-width: 500px) {
434+
@media (width <= 500px) {
435435
.content-wrapper {
436436
grid-template-columns: minmax(20ch, 80ch);
437437
}

0 commit comments

Comments
 (0)