From 341c3edb1b1b4d38169a6645e9861d63b4f390d1 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 9 Nov 2025 17:28:54 -0500 Subject: [PATCH] fix(ui): fix mobile view to scroll to fit --- public/styles/index.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/public/styles/index.css b/public/styles/index.css index d85701c..0ce9ef1 100644 --- a/public/styles/index.css +++ b/public/styles/index.css @@ -3,9 +3,8 @@ body { display: flex; flex-direction: column; overscroll-behavior: none; - min-height: 100vh; - display: flex; - flex-direction: column; + height: 100vh; + overflow: hidden; } .content { @@ -74,10 +73,16 @@ ul { @media (max-width: 768px) { .topics { - font-size: 1.8em; + font-size: 1.5em; + padding: 0 20px; } .posts { - font-size: 1.2em; + font-size: 1em; + padding: 0 20px; + } + + .topic a { + margin-bottom: 15px; } }