|
@@ -11,7 +11,7 @@
|
|
@blur="show = false"
|
|
@blur="show = false"
|
|
@click="onClick"
|
|
@click="onClick"
|
|
>
|
|
>
|
|
- <span>
|
|
+ <span :class="pos">
|
|
<slot name="default" />
|
|
<slot name="default" />
|
|
</span>
|
|
</span>
|
|
</b-button>
|
|
</b-button>
|
|
@@ -25,7 +25,8 @@ export default {
|
|
variant: { type: String, required: true },
|
|
variant: { type: String, required: true },
|
|
active: { type: Boolean, default: false },
|
|
active: { type: Boolean, default: false },
|
|
hovered: { type: Boolean, default: false },
|
|
hovered: { type: Boolean, default: false },
|
|
- dotOnly: { type: Boolean, default: false }
|
|
+ dotOnly: { type: Boolean, default: false },
|
|
|
|
+ pos: { type: String, default: 'left' }
|
|
},
|
|
},
|
|
|
|
|
|
data () {
|
|
data () {
|
|
@@ -74,10 +75,21 @@ export default {
|
|
pointer-events: none;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
position: absolute;
|
|
display: block;
|
|
display: block;
|
|
- transform: translate(calc(-100% + 1.1875rem), -50%);
|
|
|
|
border-radius: 50rem;
|
|
border-radius: 50rem;
|
|
padding: 0 $input-btn-padding-x;
|
|
padding: 0 $input-btn-padding-x;
|
|
line-height: 1.5;
|
|
line-height: 1.5;
|
|
|
|
+
|
|
|
|
+ &.left {
|
|
|
|
+ transform: translate(calc(-100% + 1.1875rem), -50%);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &.right {
|
|
|
|
+ transform: translate(-2px, -50%);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &.middle {
|
|
|
|
+ transform: translate(calc(-50% + #{1.1875rem / 2}), -50%);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
@each $color, $value in $theme-colors {
|
|
@each $color, $value in $theme-colors {
|