fix(responsive): wrong attribute for mid screen landscape responsiveness

This commit is contained in:
2026-03-07 21:28:49 +01:00
parent b64f98c834
commit b3098210ab
+1 -1
View File
@@ -14,7 +14,7 @@ $breakpointSm: 550px;
} }
@mixin midScreenLandscape() { @mixin midScreenLandscape() {
@media only screen and (orientation: landscape) and (max-device-height: $breakpointMd) { @media only screen and (orientation: landscape) and (max-width: $breakpointMd) {
@content; @content;
} }
} }