felicity-lims/webapp/components/nav/FelFooterMain.vue

15 lines
336 B
Vue
Raw Normal View History

2023-11-10 14:05:15 +08:00
<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>