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.

25 lines
465 B

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