Add Footer component
This commit is contained in:
29
src/components/Footer.vue
Normal file
29
src/components/Footer.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<footer>
|
||||
<p>
|
||||
©2020 Made with <span style="color: red;">♥</span> by
|
||||
<a href="https://wazo-lab.io" target="_blank">Wazo Lab</a>
|
||||
</p>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
footer {
|
||||
background-color: #111111;
|
||||
color: @secondary-color;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
|
||||
a {
|
||||
color: rgba(255, 152, 0, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user