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

38 lines
678 B
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<span class="btn-group">
<slot></slot>
2022-04-15 14:24:30 +00:00
</span>
</template>
<style lang="scss" scoped>
2022-04-15 14:24:30 +00:00
.btn-group {
--radius: 5px;
2022-07-16 09:52:39 +00:00
display: inline-flex;
2022-04-15 14:24:30 +00:00
position: relative;
flex-wrap: nowrap;
2022-10-27 17:06:49 +00:00
:deep(button) {
2022-04-15 14:24:30 +00:00
&:not(:first-child) {
border-radius: 0;
}
&:first-of-type {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
2022-07-16 09:52:39 +00:00
border-top-left-radius: var(--radius);
border-bottom-left-radius: var(--radius);
2022-04-15 14:24:30 +00:00
}
&:last-of-type {
2022-07-16 09:52:39 +00:00
border-top-right-radius: var(--radius);
border-bottom-right-radius: var(--radius);
2022-04-15 14:24:30 +00:00
}
}
2022-10-27 17:06:49 +00:00
&[uppercased] :deep(button) {
2022-04-15 14:24:30 +00:00
text-transform: uppercase;
}
}
</style>