diff options
author | Valentin Popov <info@valentineus.link> | 2018-12-06 18:49:11 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-12-06 18:49:11 +0300 |
commit | c0dbc50ede7205101703d7101c9f1e6a54bfef64 (patch) | |
tree | f490c293f8bbf0c1620c0348ebaf159b13b8d1b7 /_scss/utilities | |
parent | 763427840a9fb527a43387bf544d5c4809c67b0c (diff) | |
download | popov.link-c0dbc50ede7205101703d7101c9f1e6a54bfef64.tar.xz popov.link-c0dbc50ede7205101703d7101c9f1e6a54bfef64.zip |
feat(css): Update style components
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/utilities')
-rw-r--r-- | _scss/utilities/_boxsizing.scss | 15 |
1 files changed, 0 insertions, 15 deletions
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; -} |