From b3098210abcfe51a7151ac06a439d5b2fc550c88 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 7 Mar 2026 21:28:49 +0100 Subject: [PATCH] fix(responsive): wrong attribute for mid screen landscape responsiveness --- src/styles/_responsive.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_responsive.scss b/src/styles/_responsive.scss index ec5df4d..954d52b 100644 --- a/src/styles/_responsive.scss +++ b/src/styles/_responsive.scss @@ -14,7 +14,7 @@ $breakpointSm: 550px; } @mixin midScreenLandscape() { - @media only screen and (orientation: landscape) and (max-device-height: $breakpointMd) { + @media only screen and (orientation: landscape) and (max-width: $breakpointMd) { @content; } } \ No newline at end of file