personal-site/components/Footer.vue
2024-07-25 18:40:16 -06:00

18 lines
292 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<footer>
&copy; CodeF53 2022-{{ (new Date).getFullYear() }} with
</footer>
</template>
<style>
footer {
filter: opacity(0.5);
font-size: 0.85rem;
pointer-events: none;
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
}
</style>