From b1b67fb0bd9a15df3d27bc322e22ebef9f83ecb4 Mon Sep 17 00:00:00 2001 From: Moonlit Productions Date: Mon, 10 Nov 2025 10:33:31 -0500 Subject: [PATCH] Modify layout to block based display if on mobile --- styles.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/styles.css b/styles.css index ac06d96..7cbe43e 100644 --- a/styles.css +++ b/styles.css @@ -361,4 +361,10 @@ button:hover { .readout .value { color: var(--text-light); font-weight: bold; +} + +@media only screen and (max-width: 768px) { + main { + display: block; + } } \ No newline at end of file