-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathApp.vue
60 lines (45 loc) · 805 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
<template>
<app-layout>
<home-view />
</app-layout>
</template>
<script setup>
import AppLayout from "@/layouts/AppLayout.vue";
import HomeView from "@/views/HomeView.vue";
</script>
<style lang="scss">
@import "@/assets/scss/app.scss";
body {
justify-content: center;
align-items: center;
}
.main__wrapper {
padding-bottom: 30px;
background-color: $white;
box-shadow: $shadow-light;
h1 {
margin-bottom: 0;
padding: 0 95px;
text-align: center;
@include b-s36-h42;
}
p {
padding: 0 95px;
text-align: center;
font-size: 20px;
line-height: 30px;
}
b {
font-size: 1.2em;
}
}
.main__header {
margin-bottom: 30px;
padding: 20px 0;
background-color: $green-600;
img {
display: block;
margin: 0 auto;
}
}
</style>