From 2a8b3946344dceb7d3f13f3616bb0fed30b0ae53 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 24 Apr 2018 17:06:16 +0400 Subject: Renaming a function Signed-off-by: Valentin Popov --- _scss/utilities/_borderbox.scss | 15 --------------- _scss/utilities/_boxsizing.scss | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 _scss/utilities/_borderbox.scss create mode 100644 _scss/utilities/_boxsizing.scss diff --git a/_scss/utilities/_borderbox.scss b/_scss/utilities/_borderbox.scss deleted file mode 100644 index 48251c3..0000000 --- a/_scss/utilities/_borderbox.scss +++ /dev/null @@ -1,15 +0,0 @@ -// Box Sizing -// -// The box-sizing property in CSS controls how the box model -// is handled for the element it applies to. -// -// Values: content-box | border-box -// Default: content-box -// -// https://www.w3.org/TR/css-ui-3/#box-sizing -@mixin borderbox($value: content-box) { - -webkit-box-sizing: $value; - -moz-box-sizing: $value; - -ms-box-sizing: $value; - box-sizing: $value; -} diff --git a/_scss/utilities/_boxsizing.scss b/_scss/utilities/_boxsizing.scss new file mode 100644 index 0000000..93a9250 --- /dev/null +++ b/_scss/utilities/_boxsizing.scss @@ -0,0 +1,15 @@ +// Box Sizing +// +// The box-sizing property in CSS controls how the box model +// is handled for the element it applies to. +// +// Values: content-box | border-box +// Default: content-box +// +// https://www.w3.org/TR/css-ui-3/#box-sizing +@mixin boxsizing($value: content-box) { + -webkit-box-sizing: $value; + -moz-box-sizing: $value; + -ms-box-sizing: $value; + box-sizing: $value; +} -- cgit v1.2.3