Exploring the world of Angular is exciting, and I am a newcomer to it. Currently, I am tackling an innovative Angular 15 project that makes use of the Material library. My current predicament lies in the fact that none of the CSS overrides appear to be taking effect within my project. Specifically, when attempting to increase the spacing between rows in mat-table
, as advised in this thread, nothing seems to work with the following code snippet:
.mat-table {
border-collapse: separate!important;
border-spacing: 0 4px!important;
}
Any global CSS modifications or tweaks simply do not have any impact on my project,
In terms of my style.css:
HTML, body { margin: 0; height: 100%; }
body { font-family: Roboto, "Helvetica Neue", sans-serif; }
If anyone has any insights or suggestions, I would greatly appreciate it. Thank you!