From 220254485020a2acbd7cf2eec6acced31bbdd30c Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Wed, 1 Jan 2025 15:05:00 +0000 Subject: [PATCH] Switch to one column on mobile (#3) * add npm lockfile too * switch to one column on mobile --- src/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/style.css b/src/style.css index 812ab4c..84f1d1a 100644 --- a/src/style.css +++ b/src/style.css @@ -16,6 +16,12 @@ body { height: 100%; } +@media screen and (max-width: 700px) { + .slots { + grid-template-columns: 1fr; + } +} + .slot { display: flex; flex-direction: column;