-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patherror.vue
52 lines (43 loc) · 838 Bytes
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<template>
<Header></Header>
<NotFound style="min-height: 80vh;" />
<Footer></Footer>
</template>
<script setup>
import Header from '~/components/Header.vue'
import Footer from '~/components/Footer.vue'
import NotFound from './components/NotFound.vue';
</script>
<style>
.prevent-select {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
body {
min-height: 100vh;
}
.slide-fade-enter-active {
transition: all 0.3s ease-out;
}
.slide-fade-leave-active {
transition: all 0.3s ease-out;
}
.slide-fade-enter-from,
.slide-fade-leave-to {
transform: translateY(20px);
opacity: 0;
}
.cog {
transition: all 0.4s ease-out;
}
.cog:hover {
transform: rotate(90deg);
transition: all 0.4s ease-out;
}
h3 {
font-size: 1rem;
}
</style>