From 16dc711f6202fb761b3d654abcc829a5cdb8aef9 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 9 Mar 2024 14:51:32 +0100 Subject: [PATCH] Created the NotFound styles.sass --- web/src/pages/NotFound/styles.sass | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 web/src/pages/NotFound/styles.sass diff --git a/web/src/pages/NotFound/styles.sass b/web/src/pages/NotFound/styles.sass new file mode 100644 index 00000000..a4779252 --- /dev/null +++ b/web/src/pages/NotFound/styles.sass @@ -0,0 +1,24 @@ +.page-404 + display: flex + height: 100vh + justify-content: space-around + align-items: center + flex-wrap: wrap + + .logo-container + display: flex + align-items: center + + h1 + margin: 1rem + + img + width: 30rem + +@media screen and (max-width: 768px) + .page-404 + padding: 2rem + gap: 2rem + + .page-404 img + width: 60vw \ No newline at end of file