Search code examples
htmlangularsassangular-material

Remove input border from mat paginator


I am using a mat-paginator and it looks like this enter image description here

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.


Solution

  • 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.