From 4395ba2bc8e40fbb876e312bb6ef14bbe1796cba Mon Sep 17 00:00:00 2001 From: ArneBo Date: Fri, 28 Mar 2025 12:44:52 +0100 Subject: [PATCH] fix(front): clickable sidebar --- front/src/ui/components/Sidebar.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/front/src/ui/components/Sidebar.vue b/front/src/ui/components/Sidebar.vue index 5d59eb13b..9c05274dd 100644 --- a/front/src/ui/components/Sidebar.vue +++ b/front/src/ui/components/Sidebar.vue @@ -460,7 +460,10 @@ const moderationNotifications = computed(() => :global(.hide-on-mobile) { max-height: 0px; + overflow: hidden; + transition: all .8s; pointer-events: none; + display: none; } @media screen and (min-width: 1024px) { @@ -472,7 +475,7 @@ const moderationNotifications = computed(() => :global(.hide-on-mobile) { max-height: 100dvh; - transition: all .8s; + pointer-events: unset; } &.sticky-content {