Is there a way to reduce the width and height of the popup on mobile only?
Hi @user20204
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