You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
239 B
Svelte

<script>
import { page } from '$app/stores';
</script>
{#if $page.error}
<div class="error-message"><h1>{$page.status}: {$page.error.message}</h1></div>
{/if}
<style>
.error-message {
max-width: 480px;
margin: 0 auto;
}
</style>