I am removing the box shadow CSS with my media query:
.myelements {
@include box-shadow(2px 2px 3px #000);
}
@media (max-width: 768px) {
.myelements {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
}
Instead of re-defining the css as none
and having to use all the vendor prefixes I was wondering if there was more elegant sassier way? I am using SASS and Compass.