1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-24 13:26:08 +03:00
guide/front/client/page/Page404.vue
avele 005a386da5
Front/fix/general issues (#306)
* Added titles to buttons

* Titles for pages
2019-07-04 17:51:12 +04:00

37 lines
665 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="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`
}
}
</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>