From 7fedf16f14153de6899c78d5e0fb78405f631ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20D=C3=A9nari=C3=A9?= Date: Tue, 11 Feb 2025 12:01:28 +0100 Subject: [PATCH] fix: unwanted margin in chat application - EXO-76968 Before this fix, there is unwanted margin in chat application This is due to the fact that chat app do not use (it cannot due to technical limitation) --- application/src/main/webapp/css/components/chat.less | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/application/src/main/webapp/css/components/chat.less b/application/src/main/webapp/css/components/chat.less index b02e3d15db..1c87dbfeb3 100644 --- a/application/src/main/webapp/css/components/chat.less +++ b/application/src/main/webapp/css/components/chat.less @@ -241,4 +241,9 @@ } .uiIconChatEdit:before { content: "\e9e4"; -} \ No newline at end of file +} + +#UISiteBody:has(#chat-application) { + margin-left: 0px !important; + max-height: calc(var(--100vh, 100vh)) !important; +}