error: use CustomLogo component for error page

This commit is contained in:
axolotle 2023-11-07 18:07:14 +01:00
parent fe574d8ec5
commit 4064eb169a

View file

@ -16,7 +16,7 @@ const props = defineProps<{
class="container mx-auto p-10 min-h-screen flex flex-col justify-center items-center"
>
<Html :lang="head.htmlAttrs?.lang" :dir="head.htmlAttrs?.dir"></Html>
<img class="logo" src="/assets/img/logo-white.svg" alt="YunoHost logo" />
<CustomLogo class="logo" />
<div class="text-center mt-10">
<h1 class="text-7xl font-bold">{{ error.statusCode }}</h1>
<p class="py-6">{{ error.statusMessage }}</p>
@ -26,7 +26,7 @@ const props = defineProps<{
<style scoped>
.logo {
width: 50%;
max-width: 200px;
max-width: 196px;
max-height: 170px;
}
</style>