-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
51 lines (40 loc) · 974 Bytes
/
app.vue
File metadata and controls
51 lines (40 loc) · 974 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
51
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup>
import { useAuthStore } from '@/composables/useAuth';
onMounted( async () => {
const authStore = useAuthStore();
await authStore.initialize();
})
</script>
<style>
body {
font-family: 'Noto Sans KR', sans-serif !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
letter-spacing: -0.7px;
}
p {
word-wrap: break-word;
word-break: keep-all
}
.toastui-editor-contents{
font-size: 17px !important;
font-family: inherit !important;
}
::-webkit-scrollbar {
width: 12px;
}
/* Define the scrollbar thumb */
::-webkit-scrollbar-thumb {
background-color: #737373; /* Change the color to your preference */
border-radius: 6px; /* Rounded corners for the thumb */
}
/* Define the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
background-color: #737373; /* Change the color to your preference */
}
</style>