Posted 2 July 2019, 11:00 am EST
In an Angular component, I have a FlexGrid defined as follows:
My component-css looks as follows:
.submission-grid{
max-height: 700px;
max-width: 100%;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.submission-grid .wj-header.wj-cell {
background-color:red;
}
.submission-grid .wj-cell {
background-color:blue;
}
The attachment below shows the result. The properties set in “.submission-grid” are applied, those in “.submission-grid .wj-header.wj-cell” or “.submission-grid .wj-cell” are not. What am I doing wrong?
