-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
73 lines (64 loc) · 1.76 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<div>
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UNotifications />
<UModals />
</div>
</template>
<script lang="ts" setup>
useHead({
titleTemplate: (titleChunk) =>
{
return titleChunk ? `${titleChunk} - Meeio` : "Meeio";
}
});
</script>
<style lang="scss">
::-webkit-scrollbar {
background-color: transparent;
height: .5em;
width: .5em
}
html.dark {
body {
background-color: rgb(var(--color-gray-900));
}
::-webkit-scrollbar-track {
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-800)/1);
background-color: rgb(var(--color-gray-800)/var(--tw-bg-opacity));
}
::-webkit-scrollbar-thumb {
border-radius: .6em;
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-700)/1);
background-color: rgb(var(--color-gray-700)/var(--tw-bg-opacity));
}
::-webkit-scrollbar-thumb:hover {
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-600)/1);
background-color: rgb(var(--color-gray-600)/var(--tw-bg-opacity));
}
}
html.light {
body {
background-color: rgb(var(--color-white));
}
::-webkit-scrollbar-track {
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-300)/var(--tw-bg-opacity));
}
::-webkit-scrollbar-thumb {
border-radius: .6em;
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-400)/var(--tw-bg-opacity));
}
::-webkit-scrollbar-thumb:hover {
--tw-bg-opacity: 1;
background-color: rgb(var(--color-gray-500)/var(--tw-bg-opacity));
}
}
</style>