I have a popup in Hustle Pro with a unique design, so I need to apply some custom styling for mobile devices.
However, when I use a standard media query in the Custom CSS panel, it just ignores the media query altogether and just overrides the styling for all devices.
Example:
.my-class { color:#000; }
@media (max-width:600px) {
.my-class { color:#fff; }
}
Will just apply the #fff color to every device, instead of only applying #fff to to devices that are under 600px wide.
Is there a solution?