From c0dbc50ede7205101703d7101c9f1e6a54bfef64 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 6 Dec 2018 19:49:11 +0400 Subject: feat(css): Update style components Signed-off-by: Valentin Popov --- _scss/utilities/_boxsizing.scss | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 _scss/utilities/_boxsizing.scss (limited to '_scss/utilities') diff --git a/_scss/utilities/_boxsizing.scss b/_scss/utilities/_boxsizing.scss deleted file mode 100644 index 7e06a3e..0000000 --- a/_scss/utilities/_boxsizing.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 box-sizing($value: content-box) { - -webkit-box-sizing: $value; - -moz-box-sizing: $value; - -ms-box-sizing: $value; - box-sizing: $value; -} -- cgit v1.2.3