small bug fixes

This commit is contained in:
keyan 2023-10-01 19:29:07 -05:00
parent 480a302e00
commit 1ee3d6aa0a
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ function NavItems ({ className, sub, prefix }) {
asPath = `/~${sub}` + router.asPath asPath = `/~${sub}` + router.asPath
} else { } else {
// otherwise, just go to the sub // otherwise, just go to the sub
router.push(`/~${sub}`) router.push(sub ? `/~${sub}` : '/')
return return
} }
} }

View File

@ -209,7 +209,7 @@ $btn-close-bg: none;
background-color: transparent; background-color: transparent;
} }
.modal-body.fullscreen { .modal-body.fullscreen {
width: 100%; width: 100vw;
height: calc(100svh - 6rem); height: calc(100svh - 6rem);
padding: 0; padding: 0;
background-color: transparent; background-color: transparent;