From 195cc473686f8cf67dcedab2fd7de1a929342dc5 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Mon, 13 Oct 2025 20:19:13 +0200 Subject: [PATCH] decrease main container padding on smaller screens --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index 232afaf..5ea9539 100644 --- a/static/style.css +++ b/static/style.css @@ -204,6 +204,10 @@ table tr.link { border: var(--border); border-radius: var(--border-radius, 1rem); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + + @media screen and (max-width: 750px) { + padding: 0.5rem; + } } .section-wrapper {