From 961c97690001295ae25d37d0fe1898764cefbe39 Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 16 Oct 2023 23:14:27 -0700 Subject: [PATCH] Fixing main menu on mobile --- main-site/themes/temper/static/css/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/main-site/themes/temper/static/css/style.css b/main-site/themes/temper/static/css/style.css index 3711e56..9a20edf 100644 --- a/main-site/themes/temper/static/css/style.css +++ b/main-site/themes/temper/static/css/style.css @@ -238,3 +238,15 @@ ul.timeline > li:before { margin: 0.3em; } +/* Mobile friendly settings */ +@media only screen and (max-width: 800px) { + .headline { + position: static; + transform: none; + padding: 25px; + } + .launchpad { + position: static; + transform: none; + } +}