mirror of
https://github.com/codeninjasuk/showcase.git
synced 2025-01-05 20:22:44 -05:00
6 lines
87 B
SCSS
6 lines
87 B
SCSS
|
@mixin box-shadow($shadow...) {
|
||
|
@if $enable-shadows {
|
||
|
box-shadow: $shadow;
|
||
|
}
|
||
|
}
|