ui: Redesign error page
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2023-08-06 13:04:02 +02:00
parent c1fd1b24d9
commit c948c68875
2 changed files with 23 additions and 9 deletions

View File

@ -2,17 +2,31 @@
import { page } from '$app/stores';
import {
Col,
Container,
Row,
} from 'sveltestrap';
</script>
<Container>
<h1>
Error {$page.status}
</h1>
{#if $page.error}
<p class="lead">
{$page.error.message}
</p>
{/if}
<Container class="my-3">
<Row>
<Col xs="4" class="d-flex flex-column">
<img src="/img/cat-error.webp" alt="The error cat" class="rounded rounded-lg">
</Col>
<Col xs="8" class="d-flex flex-column pt-2">
<div class="d-none d-sm-block my-4"></div>
<div class="d-flex align-items-end">
<h1>
Error {$page.status}
</h1>
<hr class="ms-2 border-top border-primary border-3 flex-fill">
</div>
{#if $page.error}
<p class="lead">
{$page.error.message}
</p>
{/if}
<hr class="mt-0 border-top border-secondary border-3">
</Col>
</Row>
</Container>

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB