You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
465 B

<template functional>
6 years ago
<footer class="page-footer">
<div class="copyright">
Copyright © 2020 - <a href="https://github.com/toesbieya" target="_blank">toesbieya</a>
</div>
6 years ago
</footer>
</template>
<script>
6 years ago
export default {
name: "Footer"
}
6 years ago
</script>
<style lang="scss">
6 years ago
.page-footer {
padding: 48px 24px 24px 24px;
text-align: center;
6 years ago
.copyright {
color: #808695;
font-size: 14px;
6 years ago
}
6 years ago
}
6 years ago
</style>