diff --git a/apps/client/src/views/common/not-found/NotFound.module.scss b/apps/client/src/views/common/not-found/NotFound.module.scss index eaa16a671..86af2b5fb 100644 --- a/apps/client/src/views/common/not-found/NotFound.module.scss +++ b/apps/client/src/views/common/not-found/NotFound.module.scss @@ -2,10 +2,16 @@ .notFound { display: grid; - place-items: center; + height: 100vh; + padding-top: 20vh; background-color: var(--background-color-override, $viewer-background-color); - margin-top: 10vh; +} + +.content { + display: flex; + flex-direction: column; + color: $ui-white; - justify-content: center; + align-items: center; text-align: center; } diff --git a/apps/client/src/views/common/not-found/NotFound.tsx b/apps/client/src/views/common/not-found/NotFound.tsx index 2e9f3221a..ba05114be 100644 --- a/apps/client/src/views/common/not-found/NotFound.tsx +++ b/apps/client/src/views/common/not-found/NotFound.tsx @@ -5,15 +5,17 @@ import style from './NotFound.module.scss'; export default function NotFound() { return (
- -

Not found

-
- The page you are after was not found. -
- It may have moved or your URL may be incorrect. -
- Double check the URL and try again. -
+
+ +

Not found

+
+ The page you are after was not found. +
+ It may have moved or your URL may be incorrect. +
+ Double check the URL and try again. +
+
); }