Files
web-pwa/src/routes/+error.svelte

75 lines
1.4 KiB
Svelte

<script lang="ts">
import { page } from '$app/state';
import stopErr from '$lib/assets/img/stop-error.svg';
import Button from '$lib/components/ui/Button.svelte';
</script>
<div class="error-wrapper">
<img class="err-img" src={stopErr} alt="" role="presentation" width="150" height="210" />
<h2 class="label">{page.status}</h2>
<p class="error-message">
{page.error?.message ?? 'An unexpected derailment occurred.'}
</p>
{#if page.error?.owlCode}
<div class="debug-info">
<code>Ref: {page.error.owlCode}</code>
</div>
{/if}
<Button href={'/'} color={'accent'}>Return to Home</Button>
</div>
<style>
.error-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh - 140px);
padding: 0;
text-align: center;
font-family: 'URW Gothic', sans-serif;
}
.err-img {
height: 40%;
width: auto;
max-width: 180px;
max-height: 252px;
}
@media (max-height: 600px), (max-width: 270px) {
.err-img {
display: none;
}
}
.label {
color: #ff4444;
letter-spacing: 0.2rem;
margin-bottom: 0px;
}
.error-message {
font-size: 1.1rem;
color: var(--color-title);
max-width: 300px;
margin-top: 5px;
margin-bottom: 20px;
}
.debug-info {
background: rgba(255, 255, 255, 0.05);
padding: 5px 15px;
margin-top: 0;
margin-bottom: 20px;
border-radius: 4px;
font-size: 0.8rem;
opacity: 0.6;
}
</style>