docs: improve 404 page

This commit is contained in:
Hans Pagel
2021-02-03 15:16:43 +01:00
parent 17d5d7ce1b
commit 4896358e29

View File

@@ -1,17 +1,24 @@
<template> <template>
<div class="error-page"> <div class="error-page">
Oh no, page not found. <div class="error-page__content">
Oh no, we cant find this page.
<g-link <g-link
to="/" to="/"
> >
Back Go back
</g-link> </g-link>
</div> </div>
</div>
</template> </template>
<style lang="scss"> <style lang="scss">
.error-page { .error-page {
margin: 5rem 1rem; display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
// margin: 5rem 1rem;
text-align: center; text-align: center;
color: rgba($colorWhite, 0.4); color: rgba($colorWhite, 0.4);