mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 10:56:40 +07:00
initial
This commit is contained in:
commit
5104c2518b
34 changed files with 6844 additions and 0 deletions
26
components/layout/LayoutFooter.vue
Normal file
26
components/layout/LayoutFooter.vue
Normal file
|
@ -0,0 +1,26 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue