It looks like using the v:asset tag break the media queries formatting in a css file. For example, the raw css is written like this:@media screen and (max-width: 380px) {
#some_element {
display: none;
}
}
And when I try to deliver this css file using v:asset, it turns into this:@media screen and max-width 380px {
#some_element {
display: none;
}
}
I can set debug="true" in my v:asset tag to deliver the unmodified css, but ideally I would like to be able to deliver a single compressed css file.
It looks like you're new here. If you want to get involved, click one of these buttons!