popskip/components/Footer.vue

30 lines
434 B
Vue
Raw Normal View History

2019-11-15 10:40:56 +00:00
<template>
<div>
<footer>
<div class="footer-left">
2019-12-04 16:20:29 +00:00
<h1>(C) 2019 Ryo Kenrie Wongso</h1>
2019-11-15 10:40:56 +00:00
</div>
</footer>
<div class="h-12"></div>
</div>
</template>
<script>
export default {
}
</script>
<style>
footer {
@apply h-12 bottom-0 w-full z-10 flex flex-row justify-start items-center px-4 fixed;
2019-12-04 16:20:29 +00:00
background-color: rgba(0,0,0,0.4);
2019-11-15 10:40:56 +00:00
}
footer h1 {
@apply text-white;
}
.footer-left {
}
</style>