scratchx/sass/base/_mixins.scss

14 lines
227 B
SCSS
Raw Normal View History

2015-05-05 13:06:47 -04:00
@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);
}