I have created a page using typescript which includes .html, .ts and .scss files.
When I run my website and inspect the page in Google, I noticed that the table has code inside td.mat-cell:last-of-type with padding-right: 24px
There is no mention of this padding in my .scss file.
How can I remove this right padding?
td.mat-cell{
padding-left: 0px;
padding-right: 0px;
}
Unfortunately, this solution did not work for me. Any help would be greatly appreciated. Thank you!