generated from notKamui/Nightrunner
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.vue
59 lines (50 loc) · 1.19 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
<script setup lang="ts">
import useLocale from '~/composables/useLocale'
import useVersionTracking from '~/composables/useVersionTracking'
useVersionTracking()
useLocale()
</script>
<template>
<NuxtLayout>
<Snow />
<NuxtPage />
</NuxtLayout>
<BToast />
<ConfirmDialog pt:root:class="max-w-40em m-4" />
</template>
<style lang="scss">
:root {
--blue-ratp: #0a0082;
--blue-ratp-paper: #1F3C90;
--blue-ratp-paper-secondary: rgba(31, 59, 143, 0.125);
--yellow-ratp: #ffbe00;
--place-brown: #80551A;
--gray: #414241;
--background-color: #eaeaea;
--font-shift-correction: -.0625em;
}
html, body {
font-size: 16px;
}
html, body, #__nuxt {
min-height: 100%;
}
kbd {
background-color: var(--p-gray-100);
border-radius: 0.25em;
padding: 0.1em 0.25em;
box-shadow: 0 0 0 1px var(--p-gray-300);
font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
font-size: 0.9em;
line-height: 1;
color: var(--p-gray-700);
margin: 0 0.125em;
border: 1px solid var(--p-gray-300);
.dark-mode & {
background-color: var(--p-gray-800);
box-shadow: 0 0 0 1px var(--p-gray-600);
color: var(--p-gray-100);
border: 1px solid var(--p-gray-600);
}
}
</style>