miracle/components/Footer.vue

49 lines
760 B
Vue
Raw Normal View History

<template>
<div>
<footer>
2020-01-30 06:11:24 +00:00
<FooterNav
link="/about"
icon="person"
text="about"
/>
<FooterNav
link="/games"
icon="videogame_asset"
text="game profile"
/>
<FooterNav
link="/sns"
icon="contacts"
text="social media"
/>
<FooterNav
link="//blog.nanao.moe"
icon="rss_feed"
text="blog"
external="true"
/>
</footer>
</div>
</template>
<script>
2020-01-30 06:11:24 +00:00
import FooterNav from "./FooterNav";
2020-01-30 06:11:24 +00:00
export default {
components: {
FooterNav
},
}
</script>
<style>
footer {
@apply h-16 w-full flex flex-row justify-start items-center;
}
2020-01-30 06:11:24 +00:00
@screen md {
.footer-nav p {
@apply text-base;
}
}
</style>