-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
47 lines (40 loc) · 722 Bytes
/
app.vue
File metadata and controls
47 lines (40 loc) · 722 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
<script setup>
useHead({
title: "StrataWM"
})
</script>
<template>
<div
class="antialiased w-screen h-screen flex flex-col bg-mantle overflow-x-hidden overflow-y-auto relative">
<Navbar />
<NuxtPage />
</div>
</template>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: 0;
}
body {
overflow: hidden;
}
::-webkit-scrollbar {
width: 16px;
height: 16px;
}
::-webkit-scrollbar-track {
background-color: #1e1d2d;
}
::-webkit-scrollbar-thumb {
background-color: #45475a;
border-radius: 40px;
border: 6px solid transparent;
background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
border: 5px solid transparent;
background-color: #cba6f7;
}
</style>