vue-website/components/BigButton.vue

39 lines
593 B
Vue
Raw Normal View History

2025-04-05 19:01:47 +11:00
<template>
2025-04-05 20:02:54 +11:00
<div class="button-box">
<a class="big-button" :href="props.href">
<h2>{{props.text}}</h2>
</a>
</div>
2025-04-05 19:01:47 +11:00
</template>
<script lang="ts" setup>
const props = defineProps({
href: String,
text: String
});
</script>
2025-04-05 19:21:13 +11:00
<style scoped>
2025-04-05 19:01:47 +11:00
.big-button{
background-color: var(--accent);
color: black;
width: 80%;
text-decoration: none;
2025-04-05 20:02:54 +11:00
display: block;
margin-left: auto;
margin-right: auto;
/* justify-self: center; */
}
.button-box{
width: 100%;
2025-04-05 19:01:47 +11:00
}
h2{
margin: 0;
text-align: center;
}
</style>