This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/css/directives/components/pages/_mixins.scss
2016-11-28 16:41:46 -05:00

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;
}