howfeed/src/components/Footer.svelte
2021-04-19 20:53:45 -07:00

18 lines
445 B
Svelte

<style>
div.footer {
box-sizing: border-box;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
background: #fff;
box-shadow: 0 2px 5px #000;
padding: 1rem;
z-index: 1;
}
</style>
<div class="footer">
Copyright &copy; {new Date().getFullYear()} <a href="//ff.howfeed.biz">FemboyFinancial Holdings Co., Ltd. (USA LLC)</a>. All rights reserved.
</div>