mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
13 lines
227 B
SCSS
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);
|
|
}
|