frontend/components/ActionButton.vue
2025-06-05 21:51:14 +02:00

30 lines
563 B
Vue

<template>
<div class="action-button">
<span class="material-symbols-outlined"><slot></slot></span>
</div>
</template>
<style>
.action-button {
background-color: darkblue;
height: 1.75rem;
width: 1.75rem;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
border-radius: 0.25rem;
cursor: pointer;
}
.action-button * {
color: white;
font-size: 1rem;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}
</style>