Change corner radius of badge on mobile

This is about the Google Review widget specifically for mobile. I want the ability to adjust the corners around the widget (corner radius). This is possible on the desktop, but on mobile, it has no design for adjusting this. At a minimum, the mobile should mirror what is selected on the desktop. I wanted to have no corner radius on mobile, and I only have it on desktop.

Hi there, @Fresh_Yard :waving_hand:

Thank you so much for the feedback!

I agree that it would be great to have a special setting for the mobile corner radius and we’ll try to think about it in the future updates.

I see that my colleague Daria has already shared a combined CSS code that removes shadow and applies the same corner radius for all devices.

If you’d like to set a separate corner radius for mobile devices, this CSS code will do the trick:

@media (max-width: 500px) {
.es-badge-container {
  border-radius: 5px;
}
}