-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathapp.vue
More file actions
68 lines (60 loc) · 1.24 KB
/
Copy pathapp.vue
File metadata and controls
68 lines (60 loc) · 1.24 KB
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
<script setup lang="ts">
useHead({
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1.0',
},
],
link: [
{
rel: 'icon',
type: 'image/svg+xml',
href: '/favicon.svg',
},
],
})
useSeoMeta({
title: 'Anthony\'s QR Toolkit',
})
</script>
<template>
<NuxtPage />
</template>
<style>
html, body , #__nuxt {
height: 100vh;
margin: 0;
padding: 0;
color: #222;
accent-color: #888;
background: white;
color-scheme: light;
}
html.dark,
.dark body,
.dark #__nuxt {
background: black !important;
color: white !important;
color-scheme: dark;
}
/* Overrides Floating Vue */
.v-popper--theme-dropdown .v-popper__inner,
.v-popper--theme-tooltip .v-popper__inner {
--at-apply: bg-black text-white rounded border border-base shadow;
box-shadow: 0 6px 30px #0000001a;
}
.v-popper--theme-tooltip .v-popper__arrow-inner,
.v-popper--theme-dropdown .v-popper__arrow-inner {
visibility: visible;
--at-apply: border-black;
}
.v-popper--theme-tooltip .v-popper__arrow-outer,
.v-popper--theme-dropdown .v-popper__arrow-outer {
--at-apply: border-base;
}
.v-popper--theme-tooltip.v-popper--shown,
.v-popper--theme-tooltip.v-popper--shown * {
transition: none !important;
}
</style>