11 lines
165 B
SCSS
11 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;
|
||
|
}
|