Reputation: 1003
How can I avoid the overlap between the number and the dropdown caret in ng-multiselect-dropdown?
I tired finding the element to style it. But I am not able to add styling to this.
Upvotes: 1
Views: 2053
Reputation: 51
This worked for me.
:host ::ng-deep .multiselect-dropdown .dropdown-btn .selected-item {
width: 90%;
}
Upvotes: 1
Reputation: 1003
This worked for me.
:host ::ng-deep .multiselect-dropdown .dropdown-btn {
padding: 6px 24px 6px 12px !important;
}
Upvotes: 2
Reputation: 25
.multiselect-dropdown .dropdown-btn {
padding :6px 12px !important;
}
Upvotes: 1