diff --git a/backend/src/components/SimpleBackdrop.tsx b/backend/src/components/SimpleBackdrop.tsx
index e9f29e45..8be87c09 100644
--- a/backend/src/components/SimpleBackdrop.tsx
+++ b/backend/src/components/SimpleBackdrop.tsx
@@ -11,6 +11,8 @@ interface SimpleBackdropProps {
text?: string
}
+const marginTop = env.isMobile() ? 56 : 64
+
const SimpleBackdrop = ({ progress, text }: SimpleBackdropProps) => (
(
color: '#fff',
zIndex: 1402,
height: window.innerHeight,
- marginTop: `${document.documentElement.scrollHeight - (window.innerHeight + (env.isMobile() ? 56 : 64))}px`
+ marginTop: `${document.documentElement.scrollTop - marginTop}px`
}}
>
{progress && }
diff --git a/frontend/src/components/SimpleBackdrop.tsx b/frontend/src/components/SimpleBackdrop.tsx
index e9f29e45..8be87c09 100644
--- a/frontend/src/components/SimpleBackdrop.tsx
+++ b/frontend/src/components/SimpleBackdrop.tsx
@@ -11,6 +11,8 @@ interface SimpleBackdropProps {
text?: string
}
+const marginTop = env.isMobile() ? 56 : 64
+
const SimpleBackdrop = ({ progress, text }: SimpleBackdropProps) => (
(
color: '#fff',
zIndex: 1402,
height: window.innerHeight,
- marginTop: `${document.documentElement.scrollHeight - (window.innerHeight + (env.isMobile() ? 56 : 64))}px`
+ marginTop: `${document.documentElement.scrollTop - marginTop}px`
}}
>
{progress && }