Files
open-webui-custom/src/routes/+error.svelte
Timothy Jaeryang Baek de889f5ec7 refac: styling
2025-11-23 21:17:14 -05:00

12 lines
274 B
Svelte

<script>
import { page } from '$app/stores';
</script>
<div class=" bg-white dark:bg-gray-800 min-h-screen">
<div class=" flex h-full">
<div class="m-auto my-10 dark:text-gray-300 text-3xl font-medium">
{$page.status}: {$page.error?.message}
</div>
</div>
</div>