feat: add button component
This commit is contained in:
parent
72f2c6d748
commit
28bb7711d9
3 changed files with 83 additions and 2 deletions
|
@ -10,15 +10,43 @@
|
|||
Want to learn more about this handsome dragon? You've come to the right
|
||||
place!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Or if you just want to download the complete ref sheet you can do so here:
|
||||
</p>
|
||||
|
||||
<div class="btn-group flex flex--row flex--wrap">
|
||||
<btn href="/sebin-ref-full-SFW-hires.jpg">Download SFW (10 MB)</btn>
|
||||
<btn href="/sebin-ref-full-NSFW-hires.jpg">Download NSFW (10,2 MB)</btn>
|
||||
</div>
|
||||
</prose>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Prose from "@/components/Prose.vue";
|
||||
import Welcome from "@/components/Welcome.vue";
|
||||
import btn from "@/components/Button.vue";
|
||||
|
||||
export default {
|
||||
name: "Home",
|
||||
components: { Prose, Welcome },
|
||||
components: { Prose, Welcome, btn },
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/scss/base.scss";
|
||||
|
||||
.btn-group {
|
||||
justify-content: space-evenly;
|
||||
|
||||
.btn {
|
||||
flex: 1 0 100%;
|
||||
|
||||
margin: 1em 0;
|
||||
|
||||
@include mq-desktop {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue