pushpakumara
pushpakumara

Reputation: 25

How to change styles of nz-table in NG-Zorro

How to change styles of a nz-table in nz-zorro in angular

enter image description here

Upvotes: 2

Views: 4132

Answers (1)

Roshani
Roshani

Reputation: 51

You can override the ng-zorro ant design by ::ng-deep keyword, for example:

::ng-deep .ant-table.ant-table-default 

    { 
          padding: 16px; 16px

    }

Upvotes: 3

Related Questions