index: Use a single grid column on narrow screens

This commit is contained in:
Juno Takano 2026-05-18 23:01:15 -03:00
commit 4477287843

View file

@ -132,3 +132,9 @@ img.five { animation-delay: -30s; }
transform: rotate3d(0, 1, 0, 360deg);
}
}
@media (max-width: 600px) {
body {
grid-template-columns: 1fr;
}
}