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