fix(front): clickable sidebar
This commit is contained in:
parent
ff7515a49d
commit
4395ba2bc8
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue