How do you apply a radius to the images of the post element?

I am working on styling a mega menu and I would like to turn the post images into circles. I am not seeing a border box specifically for the images, so I would assume I need to do it through custom css, but how do I reference only the image part of the post element?

You can select all images within the element and add a border-radius to them.

%root% img {
  border-radius: 10px;
}

Add that to custom CSS on the posts element :slightly_smiling_face:

Winner! Winner! Chicken Dinner!

Thanks