-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathAuthView.vue
57 lines (50 loc) · 1.12 KB
/
AuthView.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
<template>
<div>
<div class="login-menu">
<v-container>
<v-layout class="header1" justify-center>Welcome to CodeBadge!</v-layout>
<v-layout class="header2" justify-center>TRACK ALL YOUR PROJECTS AT ONE PLACE</v-layout>
<v-layout class="text1" justify-center>
Having a hard time tracking all your project contributors?
</v-layout>
<v-layout class="text2" justify-center>CodeBadge does it for you!
</v-layout>
<v-layout class="ma-3" align-center justify-center>
<Login />
</v-layout>
</v-container>
</div>
</div>
</template>
<script>
import Login from "../components/auth/Login";
export default {
name: "AuthView",
components: {
Login
}
};
</script>
<style lang="scss" scoped>
.login-menu {
padding-top: 100px;
}
.header1 {
font-family: 'Playfair Display';
font-size: 70px;
padding-top: 50px;
}
.header2 {
font-family: 'Roboto';
font-size: 33px;
}
.text1 {
padding-top: 25px;
font-family: 'Roboto Condensed';
font-size: 20px;
}
.text2 {
font-family: 'Roboto Condensed';
font-size: 20px;
}
</style>