koel/resources/assets/js/components/ui/Btn.vue
2023-08-22 22:53:55 +02:00

77 lines
1.2 KiB
Vue

<template>
<button ref="button">
<slot>Click me</slot>
</button>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const button = ref<HTMLButtonElement>()
defineExpose({
button
})
</script>
<style lang="scss" scoped>
button {
background: var(--color-blue);
color: var(--color-text-primary);
font-size: 1rem;
padding: .6rem .85rem;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: .3rem;
&:not([disabled]):hover {
box-shadow: inset 0 0 0 10rem rgba(0, 0, 0, .05);
}
&[small] {
font-size: .9rem;
padding: .4rem .7rem;
}
@include inset-when-pressed();
&[green] {
background-color: var(--color-green);
}
&[white] {
background-color: transparent;
color: var(--color-text-secondary);
}
&[red] {
background-color: var(--color-red);
}
&[grey], &[gray] {
background-color: var(--color-bg-secondary);
}
&[orange] {
background-color: var(--color-highlight);
}
&[transparent] {
background-color: transparent;
}
&[rounded] {
border-radius: 999px;
}
&[unrounded] {
border-radius: 0 !important;
}
&[uppercase] {
text-transform: uppercase;
}
}
</style>