Added Box Shadow Mixin
This commit is contained in:
17
public/styles/tools/_box-shadow.scss
Normal file
17
public/styles/tools/_box-shadow.scss
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* Box Shadow
|
||||||
|
* Box Shadow Mixins
|
||||||
|
*
|
||||||
|
* Dependencies:
|
||||||
|
* styles/tools/prefix.scss
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.0 - 2018/05/14
|
||||||
|
*/
|
||||||
|
@mixin t-box-shadow($horizontal, $vertical, $blur, $spread, $color, $inset:false) {
|
||||||
|
@if $inset == true {
|
||||||
|
@include t-prefix-property(box-shadow, inset #{$horizontal} #{$vertical} #{$blur} #{$spread} #{$color}, spec webkit moz);
|
||||||
|
} @else {
|
||||||
|
@include t-prefix-property(box-shadow, #{$horizontal} #{$vertical} #{$blur} #{$spread} #{$color}, spec webkit moz);
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user