fix(front): clickable sidebar
This commit is contained in:
parent
ff7515a49d
commit
4395ba2bc8
|
@ -460,7 +460,10 @@ const moderationNotifications = computed(() =>
|
||||||
|
|
||||||
:global(.hide-on-mobile) {
|
:global(.hide-on-mobile) {
|
||||||
max-height: 0px;
|
max-height: 0px;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: all .8s;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1024px) {
|
@media screen and (min-width: 1024px) {
|
||||||
|
@ -472,7 +475,7 @@ const moderationNotifications = computed(() =>
|
||||||
|
|
||||||
:global(.hide-on-mobile) {
|
:global(.hide-on-mobile) {
|
||||||
max-height: 100dvh;
|
max-height: 100dvh;
|
||||||
transition: all .8s;
|
pointer-events: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.sticky-content {
|
&.sticky-content {
|
||||||
|
|
Loading…
Reference in New Issue