vue-website/components/BoldButton.vue

40 lines
662 B
Vue
Raw Permalink Normal View History

2024-09-23 20:55:56 +10:00
<script setup>
const props = defineProps({
href: String,
text: String
});
</script>
<template>
<a class="button" :href="props.href">
<p>{{ props.text }}</p>
</a>
</template>
2025-04-05 20:02:54 +11:00
<style scoped>
2024-09-23 20:55:56 +10:00
.button {
background-color: #3f0064;
border: none;
color: white;
padding: 8px;
border-radius: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 25px;
overflow: hidden;
}
.button:hover{
background-color: #e17ff5;
color: black
}
p{
font-weight: 100;
margin: 0;
}
</style>