-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
46 lines (41 loc) · 597 Bytes
/
app.vue
File metadata and controls
46 lines (41 loc) · 597 Bytes
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
<template>
<UiNavbar />
<ClientOnly>
<NuxtPage />
<UiFooter />
<!-- <UiWelcomeModal /> -->
</ClientOnly>
</template>
<style>
html {
color: #202020;
}
html a {
color: #0495b1;
transition: 0.3s color;
}
html a:hover {
color: #015768;
}
html.dark {
color-scheme: dark;
background-color: #1d1d1d;
color: #cdd9e5;
}
html.dark a {
color: #79c2d0;
transition: 0.3s color;
}
html.dark a:hover {
color: #efefef;
}
.fade-enter-active,
.fade-leave-active {
transition: all 0.4s;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>