sass-css3-mixins
sass-css3-mixins copied to clipboard
bax-shadow none
How to make this happen?
@include box-shadow(none);
Did you ever find out how to do this? I've been setting all the parameters to 0 but I always wondered how do turn it off completely
For instance for a text shadow:
@include text-shadow(0,0,0,rgba(0,0,0,0));
@Paul-Morris is desired result box-shadow: none;
?
Yes