Files
fruit-project/src/components/Footer.vue
2020-12-06 17:36:32 +01:00

31 lines
484 B
Vue

<template>
<footer>
<p>
©2020 Made with <span style="color: red;">&#9829;</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;
line-height: @footerHeight;
height: @footerHeight;
p {
margin: 0;
a {
color: rgba(255, 152, 0, 1);
}
}
}
</style>