I’ve added a little custom CSS on a post to put a drop shadow for all cells within a grid. It displays just fine on my mobile browser (Safari), but for some reason it’s not showing on desktop at all.
I don’t think it’s an overflow issue as the Grid has it set to ‘visible’ (as do all parent containers) and the cells do as well.
This is the CSS which I’ve applied to the Element CSS for the Grid:
$el .x-cell {
box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.65) !important;
}