I have this style:
.main-panel{
height: 100%;
display: grid;
grid-template-rows: 4rem auto;
grid-template-columns: 14rem auto;
grid-template-areas: 'header header''sidebar body';
}
Now how do I change the style grid-template-areas in angular
for example :
grid-template-columns: 14rem auto;
grid-template-areas: 'header header''sidebar body';
to >>>
grid-template-columns: 100%;
grid-template-areas: 'header header''sidebar sidebar';
Doesn't angular support styles from css grid????!!!!!