Can we add or way to change the width depending on device
It little big on Mobile - and if you change the width for mobile then Desktop is a little too small?
You might want to a scale option in UI instead of using css
Can we add or way to change the width depending on device
You might want to a scale option in UI instead of using css
Hello @AndyF
Thanks a bunch for your feedback!
I cannot but agree that it would be great to have a setting for this in the configurator. If more users upvote this request, it might be considered in the future
Guys, if you’d also like to change the popup width on mobile, please use this code in the Custom CSS field on the Settings tab of your widget’s settings:
@media (width <= 480px) {
[class*='Popup__PopupContent-sc'] {
width: 80% !important;
}
}