Skip to content

Commit

Permalink
fix: prevent vertical overflow on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
mrderyk committed Feb 27, 2024
1 parent 4b43380 commit aedb552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/chatView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit aedb552

Please sign in to comment.