From 30e4b898f5eff94688281e96302aa559f583ae66 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Thu, 6 Jul 2023 15:40:20 +0200 Subject: [PATCH] FIX: limits legacy sidebar height (#22466) Prior to this fix the sidebar was taking unlimited height. --- .../chat/assets/stylesheets/desktop/chat-index-full-page.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chat/assets/stylesheets/desktop/chat-index-full-page.scss b/plugins/chat/assets/stylesheets/desktop/chat-index-full-page.scss index a175d8779dd..0de8658191d 100644 --- a/plugins/chat/assets/stylesheets/desktop/chat-index-full-page.scss +++ b/plugins/chat/assets/stylesheets/desktop/chat-index-full-page.scss @@ -1,7 +1,7 @@ .has-full-page-chat:not(.discourse-sidebar) { .full-page-chat { .channels-list { - height: 100%; + height: calc(100vh - var(--header-offset)); border-right: 1px solid var(--primary-low); background: var(--primary-very-low);