From aedb552b4febcb94113997dc3e1d355daceca5c2 Mon Sep 17 00:00:00 2001 From: Deryk DeGuzman Date: Tue, 27 Feb 2024 14:55:22 -0800 Subject: [PATCH] fix: prevent vertical overflow on smaller screens --- src/components/chatView.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/chatView.scss b/src/components/chatView.scss index aa845df..cdd328b 100644 --- a/src/components/chatView.scss +++ b/src/components/chatView.scss @@ -199,8 +199,8 @@ $chatbotPosition: $sizeS; .vrcbChatbotWrapper { right: 0; bottom: 0; - height: 100vh; - max-height: 100vh; + height: 100%; + max-height: 100%; border-radius: 0; border: none; border-left: 1px solid $borderColor;