mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
37 lines
677 B
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>
|