SCSS support tools

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2018-05-31 04:31:44 +04:00
parent ac9c0b81bc
commit 1bb23ac3c7
2 changed files with 28 additions and 0 deletions

View File

@ -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 box-sizing($value: content-box) {
-webkit-box-sizing: $value;
-moz-box-sizing: $value;
-ms-box-sizing: $value;
box-sizing: $value;
}