koel/resources/assets/js/components/ui/BtnGroup.vue

37 lines
677 B
Vue

<template>
<span class="btn-group">
<slot></slot>
</span>
</template>
<style lang="scss" scoped>
.btn-group {
--radius: 5px;
display: flex;
position: relative;
flex-wrap: nowrap;
::v-deep(button) {
&:not(:first-child) {
border-radius: 0;
}
&:first-of-type {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: var(--radius);
border-bottom-left-radius: var(--radius);
}
&:last-of-type {
border-top-right-radius: var(--radius);
border-bottom-right-radius: var(--radius);
}
}
&[uppercased] ::v-deep(button) {
text-transform: uppercase;
}
}
</style>