Hi Guys,
I’m having to add the same css twice before the changes to take effect.
For example, on this page: https://sitra.org/cost-guides/
I’ve added a box shadow using the folowing css:
.gb-grid-wrapper > .gb-grid-column > .gb-container {
box-shadow: 0px 2px 16px 0px rgba(0,0,0,.1);
}
However, that didn’t work.
I had to add it twice like:
.gb-grid-wrapper > .gb-grid-column > .gb-container {
box-shadow: 0px 2px 16px 0px rgba(0,0,0,.1);
}
.gb-grid-wrapper > .gb-grid-column > .gb-container {
box-shadow: 0px 2px 16px 0px rgba(0,0,0,.1);
}
Why is this happening?
Thanks
Ben