-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
58 lines (49 loc) · 1.14 KB
/
app.vue
File metadata and controls
58 lines (49 loc) · 1.14 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
<template>
<NuxtLayout>
<!-- Markup shared across all pages, ex: NavBar -->
<NuxtLoadingBar :duration="1000" />
<NuxtPage />
</NuxtLayout>
</template>
<style>
body {
background-color: #121212;
overflow-x: hidden;
}
.inherit {
display: inherit;
}
* {
scrollbar-color: rgba(255, 255, 255, 0.33) rgba(0, 0, 0, 0.14);
scrollbar-width: thin;
}
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.14);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.33);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.24);
}
::-webkit-scrollbar-thumb:active {
background: rgba(255, 255, 255, 0.14);
}
</style>
<script setup>
useHead({
script: [{
children: `(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3162665,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');`
}]
})
</script>