From e9878f8ac63075b914132a77408e5702d2cade99 Mon Sep 17 00:00:00 2001 From: Michele Lo Russo Date: Tue, 3 Dec 2024 23:40:16 +0100 Subject: [PATCH] MM-61526 Fix scrollbar not clickable due to being covered by toaster (#29251) * Fix scrollbar not clickable due to being covered by toaster * Apply suggestions from code review --------- Co-authored-by: Harrison Healey Co-authored-by: Mattermost Build --- .../channels/src/components/toast_wrapper/toast__wrapper.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/channels/src/components/toast_wrapper/toast__wrapper.scss b/webapp/channels/src/components/toast_wrapper/toast__wrapper.scss index 23bfa1ea2b..4cc410575a 100644 --- a/webapp/channels/src/components/toast_wrapper/toast__wrapper.scss +++ b/webapp/channels/src/components/toast_wrapper/toast__wrapper.scss @@ -2,9 +2,9 @@ position: absolute; z-index: 3; display: flex; - width: 100%; + width: calc(100% - 32px); align-items: center; justify-content: center; - margin-top: 16px; + margin: 16px 16px 0; gap: 7px; }