[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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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