how i can style pager in angular inside TS file or HTML file without scss with this code
<div class="d-flex justify-content-center" *ngIf="totalCount && totalCount > 0">
<pagination
[totalItems]="totalCount"
[boundaryLinks]="true"
(pageChanged)="onPagerChange($event)"
[itemsPerPage]="pageSize"
previousText="‹"
nextText="›"
firstText="«"
lastText="»"
pageBtnClass="black-background" >
</pagination>
</div>
i try with make new file scss file and add my style but that not working i need solution soon as possible
