-
Notifications
You must be signed in to change notification settings - Fork 4
/
error.vue
46 lines (43 loc) · 848 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
<template>
<NuxtLayout>
<div class="page">
<header class="container">
<nuxt-link to="/">
{{ '<- back' }}
</nuxt-link>
<h1>
Whooops! Something went wrong.
</h1>
</header>
<section class="container">
<div class="wrap">
<video
src="/404.mp4"
muted
loop
autoplay
playsinline
/>
</div>
</section>
</div>
</NuxtLayout>
</template>
<style lang="scss" scoped>
header {
display: flex;
flex-direction: column;
gap: to-rem(36);
padding-bottom: var(--s-m);
margin-bottom: var(--s-m);
border-bottom: 1px solid var(--c-light);
a {
text-decoration: none;
}
}
.wrap {
margin-inline: auto;
max-width: to-rem(1280);
aspect-ratio: 1280 / 720;
}
</style>