From 8b983acf99afcb58771fc37b3cf08ac8cadb4af8 Mon Sep 17 00:00:00 2001 From: Lukas Hass Date: Tue, 29 Mar 2022 12:53:54 +0200 Subject: [PATCH] change cowebsite placement on orientation mediaquery --- front/style/cowebsite/_short-screens.scss | 2 +- front/style/cowebsite/_wide-screens.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/style/cowebsite/_short-screens.scss b/front/style/cowebsite/_short-screens.scss index 89a5d123..f75c3d66 100644 --- a/front/style/cowebsite/_short-screens.scss +++ b/front/style/cowebsite/_short-screens.scss @@ -1,4 +1,4 @@ -@include media-breakpoint-up(md) { +@media screen and (orientation:portrait) { #main-container { display: flex; flex-direction: column-reverse; diff --git a/front/style/cowebsite/_wide-screens.scss b/front/style/cowebsite/_wide-screens.scss index 432a4dec..25aa756d 100644 --- a/front/style/cowebsite/_wide-screens.scss +++ b/front/style/cowebsite/_wide-screens.scss @@ -1,4 +1,4 @@ -@include media-breakpoint-down(lg) { +@media screen and (orientation:landscape) { #cowebsite { right: 0; top: 0;