-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
40 lines (38 loc) · 796 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<script setup lang="ts">
useSeoMeta({
title: 'Track Vault',
ogTitle: 'Track Vault',
description:
'Simplify project oversight and problem resolution using our dedicated online issue tracking system',
ogDescription:
'Simplify project oversight and problem resolution using our dedicated online issue tracking system',
})
</script>
<template>
<div>
<NuxtLayout>
<div class="px-4 sm:px-6 lg:px-8">
<NuxtLoadingIndicator :height="5" />
<NuxtPage />
</div>
</NuxtLayout>
</div>
</template>
<style>
.dark body,
.dark body option {
background-color: #000;
}
.dark body a,
.dark body select,
.dark body th,
.dark body td {
color: #fff;
}
.VueHotToast__toast-container .content-message {
color: #000;
}
.dark body {
color: #333;
}
</style>