website/components/Button.vue

29 lines
458 B
Vue
Raw Normal View History

2023-04-16 20:12:24 +03:00
<template>
<button @click="click"><slot></slot></button>
</template>
<script>
export default {
props: ["click"]
}
</script>
<style scoped>
button {
text-align: center;
width: 540px;
font-size: 25px;
padding: 20px;
border-radius: 20px;
background: var(--dark-two);
border: none;
color: white;
outline: none;
cursor: pointer;
transition: .4s;
}
button:hover {
box-shadow: var(--def-shadow);
}
</style>