diff --git a/src/components/overlays/BlurredOverlayContainer.tsx b/src/components/overlays/BlurredOverlayContainer.tsx
index 020dc69..c475279 100644
--- a/src/components/overlays/BlurredOverlayContainer.tsx
+++ b/src/components/overlays/BlurredOverlayContainer.tsx
@@ -41,6 +41,8 @@ const BlurredOverlayContainer = ({
const variants: Variants = {
hidden: {
opacity: 0,
+ visibility: 'hidden',
+ display: 'none',
transition: {
delay: transitionDelay / 1000,
duration: 0.3,
@@ -49,6 +51,8 @@ const BlurredOverlayContainer = ({
},
visible: {
opacity: 1,
+ visibility: 'visible',
+ display: 'block',
transition: {
delay: transitionDelay / 1000,
duration: 0.3,
@@ -64,7 +68,7 @@ const BlurredOverlayContainer = ({
className={clsx(
className,
visible || loaded ? 'z-50' : !visible && !loaded ? '-z-50' : 'z-0',
- 'fixed inset-0 flex items-center justify-center h-dvh w-full backdrop-blur-sm',
+ 'absolute inset-0 flex items-center justify-center h-full w-full backdrop-blur-sm',
)}
style={{
backgroundColor: `rgba(0, 0, 0, ${bgOpacity / 100})`,
diff --git a/src/components/topbar/TopBar.tsx b/src/components/topbar/TopBar.tsx
index 7744e46..1be263b 100644
--- a/src/components/topbar/TopBar.tsx
+++ b/src/components/topbar/TopBar.tsx
@@ -22,7 +22,7 @@ type Props = {
function TopBar({ profileDropState, toggleProfileDropState, menuState, toggleMenuState, searchModalState, toggleSearchModalState, nightModeState, toggleNightModeState }: Props) {
return (
-
+