scratchx/sass/base/_mixins.scss
2015-05-05 13:06:47 -04:00

13 lines
227 B
SCSS

@mixin box-shadow($shadows...) {
-moz-box-shadow: $shadows;
-webkit-box-shadow: $shadows;
box-shadow: $shadows;
}
@mixin reset-box {
border: 0;
margin: 0;
padding: 0;
@include box-shadow(none);
}