From 1ef912e347f6eedc9c0c0be881027b85103666ef Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Tue, 19 Oct 2021 02:53:02 +0300 Subject: [PATCH] Left Column: Fix default width on small screens (#1508) --- src/components/main/Main.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/main/Main.scss b/src/components/main/Main.scss index c5cb59ee4..fd9e82448 100644 --- a/src/components/main/Main.scss +++ b/src/components/main/Main.scss @@ -20,7 +20,7 @@ #LeftColumn { min-width: 12rem; - width: 25vw; + width: 33vw; max-width: 26.5rem; height: 100%; position: relative; @@ -43,6 +43,7 @@ } @media (min-width: 1276px) { + width: 25vw; max-width: 33vw; }