fix: 404 page dark style

This commit is contained in:
engigu
2025-09-30 22:45:31 +08:00
parent 7c079d11e3
commit da69dd7de1
2 changed files with 11 additions and 11 deletions
+5 -5
View File
@@ -1,15 +1,15 @@
<template>
<div class="flex flex-col items-center justify-center space-y-3">
<div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center">
<div class="w-16 h-16 bg-muted border border-border rounded-full flex items-center justify-center">
<slot name="icon">
<svg class="w-8 h-8 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-8 h-8 text-muted-foreground" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2M4 13h2m13-8V4a1 1 0 00-1-1H6a1 1 0 00-1 1v1m16 0V4a1 1 0 00-1-1H6a1 1 0 00-1 1v1"></path>
</svg>
</slot>
</div>
<div class="text-gray-500 text-center">
<p class="text-lg font-medium">{{ title }}</p>
<p class="text-sm">{{ description }}</p>
<div class="text-center">
<p class="text-lg font-medium text-foreground">{{ title }}</p>
<p class="text-sm text-muted-foreground">{{ description }}</p>
</div>
</div>
</template>