File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
.b-form-tags {
2
+ > ul {
3
+ margin-top : -0.25rem ;
4
+
5
+ > li {
6
+ margin-top : 0.25rem ;
7
+ }
8
+ }
9
+
2
10
& .focus {
3
11
color : $input-focus-color ;
4
12
background-color : $input-focus-bg ;
44
52
font-size : 125% ;
45
53
line-height : 1 ;
46
54
float : none ;
55
+ margin-left : 0.25rem ;
47
56
}
48
57
}
49
58
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const BFormTag = /*#__PURE__*/ Vue.extend({
54
54
let $remove = h ( )
55
55
if ( ! this . disabled ) {
56
56
$remove = h ( BButtonClose , {
57
- staticClass : 'b-form-tag-remove ml-1 ' ,
57
+ staticClass : 'b-form-tag-remove' ,
58
58
props : { ariaLabel : this . removeLabel } ,
59
59
attrs : {
60
60
'aria-controls' : tagId ,
Original file line number Diff line number Diff line change @@ -530,7 +530,6 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
530
530
BFormTag ,
531
531
{
532
532
key : `li-tag__${ tag } ` ,
533
- staticClass : 'mt-auto' ,
534
533
class : tagClass ,
535
534
props : {
536
535
// `BFormTag` will auto generate an ID
@@ -612,7 +611,7 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
612
611
'li' ,
613
612
{
614
613
key : '__li-input__' ,
615
- staticClass : 'flex-grow-1 mt-1 ' ,
614
+ staticClass : 'flex-grow-1' ,
616
615
attrs : {
617
616
role : 'none' ,
618
617
'aria-live' : 'off' ,
@@ -627,7 +626,7 @@ export const BFormTags = /*#__PURE__*/ Vue.extend({
627
626
'ul' ,
628
627
{
629
628
key : '_tags_list_' ,
630
- staticClass : 'list-unstyled mt-n1 mb-0 d-flex flex-wrap align-items-center' ,
629
+ staticClass : 'list-unstyled mb-0 d-flex flex-wrap align-items-center' ,
631
630
attrs : { id : tagListId }
632
631
} ,
633
632
// `concat()` is faster than array spread when args are known to be arrays
You can’t perform that action at this time.
0 commit comments