Files
letsmeet/front/src/components/Button.vue
2025-03-17 10:51:32 +01:00

34 lines
550 B
Vue

<script setup lang="ts">
const props = defineProps<{
description: string;
}>();
</script>
<template>
<div class="button">{{ description }}</div>
</template>
<style scoped>
.button {
color: var(--primary-color);
text-align: center;
align-content: center;
border-radius: var(--radius);
background-color: var(--secondary-color);
word-break: break-word;
min-height: 7vh;
}
.button:hover
{
transform: scale(1.1);
background-color: var(--header-color);
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
</style>