From 86f40a431de30e74050024fdf0a79fed3a275a96 Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Mon, 1 Apr 2024 13:58:42 -0500 Subject: [PATCH] chat: no display on mobile/small screen --- sass/_project-sass/_project-Main.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sass/_project-sass/_project-Main.scss b/sass/_project-sass/_project-Main.scss index 746564c1..75f12a60 100644 --- a/sass/_project-sass/_project-Main.scss +++ b/sass/_project-sass/_project-Main.scss @@ -2297,11 +2297,19 @@ pre, code { .left-col { padding: 1rem; overflow-y: scroll; + + @media (max-device-width:480px), screen and (max-width:800px) { + width: 100% !important; + } } .right-col { padding: 1rem; position: relative; + + @media (max-device-width:480px), screen and (max-width:800px) { + display: none; + } } .chat-container {