[Bug] Fix selected label alignment in MultiSelect (#210)

This commit is contained in:
Pranav Raj S
2019-11-17 13:32:30 +05:30
committed by GitHub
parent 1ad36f164f
commit 127dd4cf61

View File

@@ -9,6 +9,10 @@
border: 1px solid $light-gray; border: 1px solid $light-gray;
@include margin(0); @include margin(0);
.multiselect__placeholder {
padding-top: $space-small;
}
.multiselect__tag { .multiselect__tag {
margin-top: $space-smaller; margin-top: $space-smaller;
} }
@@ -24,4 +28,15 @@
margin-bottom: 0; margin-bottom: 0;
} }
} }
.multiselect__select {
padding: 0;
right: 0;
top: 0;
&::before {
right: 0;
top: 60%;
}
}
} }