feat(css): Update style components
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
763427840a
commit
c0dbc50ede
@ -1,11 +1,10 @@
|
|||||||
@import 'utilities/boxsizing';
|
|
||||||
@import 'utilities/textsizeadjust';
|
@import 'utilities/textsizeadjust';
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*::after,
|
*::after,
|
||||||
*::before {
|
*::before {
|
||||||
@include box-sizing(border-box);
|
|
||||||
@include text-size-adjust(100%);
|
@include text-size-adjust(100%);
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
@ -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;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user