-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
69 lines (59 loc) · 922 Bytes
/
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
60
61
62
63
64
65
66
67
68
69
<template>
<div>
<NuxtLayout>
<NuxtLoadingIndicator color="#C9ADA7" />
<NuxtPage />
</NuxtLayout>
</div>
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.3s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
list-style: none;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
/* text-align: justify; */
}
html {
scroll-behavior: smooth;
}
input:focus {
outline: none;
}
/* SCROLLBAR */
::-webkit-scrollbar {
height:8px;
width: 6px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background-color: #C9ADA7;
border-radius: 2px;
}
/* For mozila */
/* @-moz-document url-prefix() {} */
/**********************/
a {
user-select: none;
}
img{
pointer-events: none;
}
.max{
max-width: 1920px;
}
body{
background-color: #22223B;
}
</style>