fix: paddings and margins
This commit is contained in:
@@ -4,18 +4,20 @@ import { onBeforeMount } from "vue";
|
||||
import { onBeforeRouteUpdate } from "vue-router";
|
||||
|
||||
function updateTitle() {
|
||||
document.title = 'Tout Doux - Not Found';
|
||||
document.title = "Tout Doux - Not Found";
|
||||
}
|
||||
|
||||
onBeforeMount(updateTitle)
|
||||
onBeforeMount(updateTitle);
|
||||
onBeforeRouteUpdate(updateTitle);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="italic text-xl font-extralight mb-4">
|
||||
<circle-question-mark-icon class="inline" /> {{ $t('not_found') }}
|
||||
<div class="italic text-xl font-extralight mt-4">
|
||||
<circle-question-mark-icon class="inline" /> {{ $t("not_found") }}
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<router-link to="/" class="btn mb-4 px-4">{{ $t('not_found_button') }}</router-link>
|
||||
<div class="w-full mt-4">
|
||||
<router-link to="/" class="btn">{{
|
||||
$t("not_found_button")
|
||||
}}</router-link>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user