muerwre.github.io/components/layout/LayoutFooter.vue
Fedor Katurov 5104c2518b initial
2022-11-02 12:13:55 +06:00

26 lines
510 B
Vue

<template>
<footer :class="[$style.footer, $attrs.class]">
<div>btw, have a nice day</div>
<div :class="$style.filler" />
<div>
(2018 - {{ new Date().getFullYear() }})
<NuxtLink to="https://github.com/muerwre/" target="_blank"
>muerwre</NuxtLink
>
</div>
</footer>
</template>
<style lang="scss" module>
.footer {
color: var(--color-text-secondary);
font-size: 0.8rem;
display: flex;
flex-direction: row;
width: 100%;
}
.filler {
flex: 1;
}
</style>