I am using a mat-paginator and it looks like this
The only problem is that I want to erase the blue border that appears at the select input, but I can not figure out how to do it.
to remove the border you should use this.
.mdc-notched-outline__trailing,
.mdc-notched-outline__notch,
.mdc-notched-outline__leading {
border: none !important;
}
this will delete the border, hope it works.