felicity-lims/webapp/components/nav/FelFooterMain.vue
2024-06-29 15:19:21 +02:00

15 lines
No EOL
336 B
Vue

<template>
<footer id="mainFooter" class="col-span-12 bg-gray-700 text-center text-gray-100 mx-4">
<span>Copyright 2020 </span>|
<router-link to="/about" class="text-gray-200"> About</router-link>
</footer>
</template>
<style scoped>
#mainFooter {
position: fixed;
margin: 0 auto;
width: 100%;
bottom: 0;
}
</style>