2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
|
|
|
<span class="btn-group">
|
2022-12-02 16:17:37 +00:00
|
|
|
<slot />
|
2022-04-15 14:24:30 +00:00
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
2022-08-10 14:56:01 +00:00
|
|
|
<style lang="scss" scoped>
|
2022-04-15 14:24:30 +00:00
|
|
|
.btn-group {
|
2022-10-24 16:43:31 +00:00
|
|
|
--radius: 5px;
|
2022-07-16 09:52:39 +00:00
|
|
|
|
2022-11-08 19:35:18 +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>
|