From 44772878434a0c4f091a58d9bad32feff995d558 Mon Sep 17 00:00:00 2001 From: jutty Date: Mon, 18 May 2026 23:01:15 -0300 Subject: [PATCH] index: Use a single grid column on narrow screens --- static/assets/css/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/assets/css/index.css b/static/assets/css/index.css index e1503b8..4109788 100644 --- a/static/assets/css/index.css +++ b/static/assets/css/index.css @@ -132,3 +132,9 @@ img.five { animation-delay: -30s; } transform: rotate3d(0, 1, 0, 360deg); } } + +@media (max-width: 600px) { + body { + grid-template-columns: 1fr; + } +}