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 | |
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')
-rw-r--r-- | _scss/utilities/_borderradius.scss | 2 | ||||
-rw-r--r-- | _scss/utilities/_boxshadow.scss | 2 | ||||
-rw-r--r-- | _scss/utilities/_boxsizing.scss | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/_scss/utilities/_borderradius.scss b/_scss/utilities/_borderradius.scss index dd8f133..5164302 100644 --- a/_scss/utilities/_borderradius.scss +++ b/_scss/utilities/_borderradius.scss @@ -6,7 +6,7 @@ // Default: 0 // // https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius -@mixin borderradius($value: 0) { +@mixin border-radius($value: 0) { -webkit-border-radius: $value; -moz-border-radius: $value; border-radius: $value; 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; diff --git a/_scss/utilities/_boxsizing.scss b/_scss/utilities/_boxsizing.scss index 93a9250..7e06a3e 100644 --- a/_scss/utilities/_boxsizing.scss +++ b/_scss/utilities/_boxsizing.scss @@ -7,7 +7,7 @@ // Default: content-box // // https://www.w3.org/TR/css-ui-3/#box-sizing -@mixin boxsizing($value: content-box) { +@mixin box-sizing($value: content-box) { -webkit-box-sizing: $value; -moz-box-sizing: $value; -ms-box-sizing: $value; |