-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppFooter.vue
50 lines (46 loc) · 908 Bytes
/
AppFooter.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
<template>
<footer>
<ul class="hz">
<li>
<a class="flex" href="https://github.com/AsserElfeki/nuxtfood#readme">
<img class="img" src="../assets/github.png" alt="github icon" />
<p>Reposotiory</p>
</a>
</li>
<li>
<a class="flex" href="https://www.linkedin.com/in/asserelfeki/">
<img class="img" src="../assets/linkedin.png" alt="LinkedIn icon" />
<p>LinkedIn</p>
</a>
</li>
</ul>
</footer>
</template>
<script>
export default {};
</script>
<style scoped>
.hz{
display: flex;
justify-content: center;
align-items: center;
list-style: none;
padding: 0;
margin: 0;
gap: 15px;
}
li {
margin: 0 20px;
}
.flex {
display: flex;
justify-content: center;
align-items: center;
color: #fff;
flex-direction: column;
}
.img {
width: 30px;
height: 30px;
}
</style>