-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAppLayout.vue
More file actions
70 lines (54 loc) · 1016 Bytes
/
AppLayout.vue
File metadata and controls
70 lines (54 loc) · 1016 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<script setup lang="ts">
import githubLogo from "@/assets/github.svg";
import Header from "@/components/common/Header.vue";
</script>
<template>
<div id="site-body">
<Header/>
<div id="site-content">
<RouterView/>
</div>
<footer>
<div id="site-footer">
<a id="github-link" href="https://github.com/makeopensource/MakeOfficeHours">
<img :src="githubLogo" alt="github-logo" height="32">
GitHub
</a>
</div>
</footer>
</div>
</template>
<style scoped>
#github-link {
display: flex;
align-items: center;
gap: 8px;
}
a {
text-decoration: none;
color: black;
font-size: 1.0rem;
}
#site-body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#site-content {
flex: 1;
}
footer {
margin: 16px 8%;
}
#site-footer {
padding: 16px;
display: flex;
gap: 32px;
align-items: center;
border-top: 1px solid #d9d9d9;
border-bottom: 1px solid #d9d9d9;
}
hr {
border: 1px solid #d9d9d9
}
</style>