forked from ruxailab/RUXAILAB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
68 lines (65 loc) · 1.36 KB
/
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
<template>
<v-app>
<Toolbar />
<GlobalErrorHandler />
<v-main>
<v-container fluid class="pa-0">
<router-view />
</v-container>
</v-main>
</v-app>
</template>
<script>
import Toolbar from './components/molecules/Toolbar'
import GlobalErrorHandler from './components/atoms/GlobalErrorHandler'
export default {
name: 'RUXAILAB',
components: {
Toolbar,
GlobalErrorHandler,
},
watch: {
$route: {
immediate: true,
handler(to) {
document.title = 'RUXAILAB ' + (to.name ? '| ' + to.name : '')
},
},
},
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif !important;
}
.v-application .display-3 {
font-size: 3.75rem !important;
font-weight: 300;
line-height: 3.75rem;
letter-spacing: -0.0083333333em !important;
font-family: 'Poppins', sans-serif !important;
}
.v-application .display-2 {
font-size: 3rem !important;
font-weight: 400;
line-height: 3.125rem;
letter-spacing: normal !important;
font-family: 'Poppins', sans-serif !important;
}
.v-application .display-1 {
font-size: 2.125rem !important;
font-weight: 400;
line-height: 2.5rem;
letter-spacing: 0.0073529412em !important;
font-family: 'Poppins', sans-serif !important;
}
.ProseMirror:focus {
outline: none;
}
.ProseMirror {
height: 100%;
}
</style>