mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
15 lines
336 B
Vue
15 lines
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>
|