1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-24 21:35:06 +03:00
guide/front/client/page/Page404.vue

37 lines
665 B
Vue
Raw Normal View History

2019-05-20 22:19:38 +03:00
<template>
<div class="page404 pt-5">
<h1 class="display-4 page404__number-header font-weight-bold">404</h1>
<h2 class="display-2 mt-4">
Page Not Found
</h2>
</div>
</template>
<script lang="ts">
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
@Component
export default class Page404 extends Vue {
beforeMount () {
document.title = `Error 404 Aelve Guide`
}
}
2019-05-20 22:19:38 +03:00
</script>
<style lang="postcss" scoped>
.page404 {
text-align: center;
display: flex;
height: 100%;
flex: 1;
flex-direction: column;
align-items: center;
&__number-header {
letter-spacing: 1.2rem !important;
}
}
</style>