Reduce width and height of location popup on mobile

Is there a way to reduce the width and height of the popup on mobile only?

1 Like

Hi @user20204 :wave:

I’ve checked your widget and see that you’ve already found a working solution:

@media (width <= 480px) {
[class*='location-card-popup'] {
max-height: 500px;
max-width: 350px;
}
}

There was just } missing at the end of the code, but I’ve added it to your widget:


Let me know if it’s fine now or if you have any questions left :slightly_smiling_face: