Here is the style I am working with:
.main-panel{
height: 100%;
display: grid;
grid-template-rows: 4rem auto;
grid-template-columns: 14rem auto;
grid-template-areas: 'header header''sidebar body';
}
I want to know how to change the grid-template-areas style in Angular.
For instance:
grid-template-columns: 14rem auto;
grid-template-areas: 'header header''sidebar body';
to >>>
grid-template-columns: 100%;
grid-template-areas: 'header header''sidebar sidebar';
Is it possible to apply CSS grid styles in Angular?!