2021-04-02 17:14:34 +03:00
|
|
|
<template>
|
|
|
|
<main class="error">
|
2021-04-13 11:43:19 +03:00
|
|
|
<h1 class="error__title">Oopsie!</h1>
|
|
|
|
<p>
|
|
|
|
We can't find the page you're looking for, sorry. It's probably our bad.
|
|
|
|
</p>
|
2021-04-06 14:23:56 +03:00
|
|
|
<CommonLink button to="/">Back to Homepage</CommonLink>
|
2021-04-02 17:14:34 +03:00
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
transition: {
|
|
|
|
name: 'fade',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.error {
|
2021-04-06 14:23:56 +03:00
|
|
|
position: relative;
|
2021-04-02 17:14:34 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-04-06 14:23:56 +03:00
|
|
|
width: 100%;
|
2021-04-02 17:14:34 +03:00
|
|
|
max-height: 100vh;
|
2021-04-06 14:23:56 +03:00
|
|
|
overflow: hidden;
|
|
|
|
place-items: center;
|
|
|
|
&__title {
|
|
|
|
@include mobileToDesktopFontSize(var(--fs-medium), var(--fs-large));
|
|
|
|
|
|
|
|
max-width: 1024px;
|
|
|
|
height: 4rem;
|
|
|
|
margin-bottom: 0;
|
|
|
|
color: var(--fc-default);
|
|
|
|
font-weight: var(--fw-bold);
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2021-04-02 17:14:34 +03:00
|
|
|
a {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 24px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|