StarLord
StarLord

Reputation: 1003

How to correct the position of ng-multiselect-dropdown's selection number?

How can I avoid the overlap between the number and the dropdown caret in ng-multiselect-dropdown?

enter image description here

I tired finding the element to style it. But I am not able to add styling to this.

enter image description here

Upvotes: 1

Views: 2053

Answers (3)

This worked for me.

:host ::ng-deep .multiselect-dropdown .dropdown-btn .selected-item {
  width: 90%;
}

Upvotes: 1

StarLord
StarLord

Reputation: 1003

This worked for me.

:host ::ng-deep .multiselect-dropdown .dropdown-btn {     
  padding: 6px 24px 6px 12px !important;      
}

Upvotes: 2

Roopam
Roopam

Reputation: 25

.multiselect-dropdown .dropdown-btn {
padding :6px 12px !important;
}

Upvotes: 1

Related Questions