diff options
Diffstat (limited to '_scss/utilities/_boxshadow.scss')
-rw-r--r-- | _scss/utilities/_boxshadow.scss | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/_scss/utilities/_boxshadow.scss b/_scss/utilities/_boxshadow.scss deleted file mode 100644 index 0cc33ce..0000000 --- a/_scss/utilities/_boxshadow.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Box Shadow -// -// The box-shadow CSS property is used to add shadow effects around an element's frame. You can specify multiple effects separated by commas if you wish to do so. A box shadow is described by X and Y offsets relative to the element, blur and spread radii, and color. -// -// Values: offset-x | offset-y | blur-radius | spread-radius | color -// Default: none -// -// https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow -@mixin box-shadow($value: none) { - -webkit-box-shadow: $value; - -moz-box-shadow: $value; - box-shadow: $value; -} |