Hi Doug,
Thanks so much for your report!
The posts element uses an overflow: hidden by default, that cuts the shadows.
There are two ways to fix the problem:
- Set the overflow of the post elements to overflow: visible. I’m not sure if the overflow: hidden is still necessary, so please see for yourself if it leads to problems.
root {
overflow: visible;
}
- Add a padding left/right to the posts element. The disadvantage is that the posts won’t align with the edges of your container, but the shadows are visible.
Best regards,
timmse