diff options
Diffstat (limited to 'client/src/pages/Error/Error.module.css')
-rw-r--r-- | client/src/pages/Error/Error.module.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/client/src/pages/Error/Error.module.css b/client/src/pages/Error/Error.module.css new file mode 100644 index 0000000..d66c6b7 --- /dev/null +++ b/client/src/pages/Error/Error.module.css @@ -0,0 +1,18 @@ +.error { + display: flex; + height: 100vh; + width: 100vw; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.error__title { + font-family: 'Barlow', sans-serif; + font-weight: 400; + font-size: var(--font-large); +} + +.error__image { + margin-left: 40px; +} |