fix(front): clickable sidebar

This commit is contained in:
ArneBo 2025-03-28 12:44:52 +01:00
parent ff7515a49d
commit 4395ba2bc8
1 changed files with 4 additions and 1 deletions

View File

@ -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 {