forked from DebaucheryLibrarian/traxxx
Added actors page. Added site logos with overview on network page.
This commit is contained in:
34
assets/components/errors/404.vue
Normal file
34
assets/components/errors/404.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<div class="errorpage">
|
||||
<h1 class="error">404 - Not Found</h1>
|
||||
|
||||
<a
|
||||
href="/"
|
||||
class="home"
|
||||
>Take me home</a>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import 'theme';
|
||||
|
||||
.errorpage {
|
||||
background: $background;
|
||||
color: $primary;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.home {
|
||||
color: $shadow;
|
||||
margin: 3rem 0;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user