10 lines
165 B
SCSS
10 lines
165 B
SCSS
/*
|
|
A list of useful mixins
|
|
*/
|
|
|
|
@mixin box-shadow($args...) {
|
|
-webkit-box-shadow: $args;
|
|
-moz-box-shadow: $args;
|
|
box-shadow: $args;
|
|
-o-box-shadow: $args;
|
|
}
|