diff options
author | Valentin Popov <info@valentineus.link> | 2018-04-24 16:48:36 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-04-24 16:48:36 +0300 |
commit | 131e332a034c7a8b4ef15bd012bfcdd8f465e66f (patch) | |
tree | b1e3d2c71f35d44c18629c7f5d09ef78e4807bf8 /_scss/utilities/_boxshadow.scss | |
parent | 54518efc2af65b57d89dd3a6fa9b5b4701c98614 (diff) | |
download | popov.link-131e332a034c7a8b4ef15bd012bfcdd8f465e66f.tar.xz popov.link-131e332a034c7a8b4ef15bd012bfcdd8f465e66f.zip |
Correct renaming of functions
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/utilities/_boxshadow.scss')
-rw-r--r-- | _scss/utilities/_boxshadow.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_scss/utilities/_boxshadow.scss b/_scss/utilities/_boxshadow.scss index 4e1d200..0cc33ce 100644 --- a/_scss/utilities/_boxshadow.scss +++ b/_scss/utilities/_boxshadow.scss @@ -6,7 +6,7 @@ // Default: none // // https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow -@mixin boxshadow($value: none) { +@mixin box-shadow($value: none) { -webkit-box-shadow: $value; -moz-box-shadow: $value; box-shadow: $value; |