Hi,
I am trying to style the containers inside a grid as simply as possible. I am thinking there has to be a quicker way.
https://imgur.com/gnJBjia
I can successfully apply the style to the WHOLE grid element – but that is not what I am wanting to do.
This style worked with the grid as a whole – but not the indivudual containers within the grid:
.border-test {
background-color: var(--base);
border-right-style: solid;
border-right-width: 4px;
border-bottom-style: solid;
border-bottom-width: 4px;
border-color: #fff;
}
I can find any documentation to help. Do I have to apply the style to EVERY container? Or is there a way to trigger it once from the grid level?
Any thoughts are appreciated.