-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
50 lines (44 loc) · 966 Bytes
/
app.vue
File metadata and controls
50 lines (44 loc) · 966 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
47
48
49
50
<script setup lang="ts">
import { Analytics } from '@vercel/analytics/nuxt'
</script>
<template>
<div class="min-h-screen bg-black text-white font-oswald selection:bg-[#cc5500] selection:text-black">
<NuxtPage />
<Analytics />
</div>
</template>
<style>
@font-face {
font-family: 'Oswald';
src: url('/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
font-weight: 200 700;
font-display: swap;
}
body {
margin: 0;
background-color: #000000;
font-family: 'Oswald', sans-serif;
overflow-x: hidden;
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #050505;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #222;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #cc5500;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>