From 3aa9620bf12c3f754b8db5f75f4dcb353c0f9e7a Mon Sep 17 00:00:00 2001 From: Samira <13108552+koninginsamira@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:39:00 +0200 Subject: [PATCH] Fixed push applying on smaller screens instead of the other way around --- andromeda.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/andromeda.css b/andromeda.css index 905ec7c..b3ff009 100644 --- a/andromeda.css +++ b/andromeda.css @@ -28,14 +28,18 @@ body { .skinHeader { --background-width: 100rem; } +} +@media (min-width: 100em) { + /* Set graphic to width of screen */ + .skinHeader { + --background-width: 100%; + } /* Push content down from under graphic */ div.skinBody > div.page { padding-top: 15rem !important; } } .skinHeader { - /* Set graphic to width of screen */ - --background-width: 100%; /* Position graphic behind header */ margin-top: calc(-1 * (0.2202 * var(--background-width))); height: 100%;