mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-03 16:10:26 +03:00
Correct renaming of functions
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user