Files
tiptap/docs/src/pages/404.vue
2021-02-04 17:33:59 +01:00

27 lines
423 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="error-page">
<div class="error-page__content">
Oh no, we cant find this page.
<g-link
to="/"
>
Go back
</g-link>
</div>
</div>
</template>
<style lang="scss">
.error-page {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: rgba($colorBlack, 0.4);
a {
color: $colorBlack;
}
}
</style>