I am using ng-multiselect-dropdown.I want to change the default style but it cannot override.I tried to given the style in index.html,angular.json,style.css files and also i tried inline style but nothing was changed.
Css tried:
ng-multiselect-dropdown .multiselect-dropdown > .dropdown-btn{
font-size:12px;
}
ts:
styles: [".multiselect-dropdown .dropdown-btn{
font-size:12px;
}"]
another way:
multiselect-dropdown .dropdown-btn{
font-size:12px;
}
another way:
multiselect-parent .dropdown-btn{
font-size:12px;
}
html:
<ng-multiselect-dropdown [placeholder]="'Select'" [data]="xxx" [(ngModel)]="xxx" name="Name" [settings]="dropdownSettings" [textField]="'Name'">
</ng-multiselect-dropdown>
How to achieve this?I tried everything related to this question.So please don't say duplicate question.