Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
327 B

@import 'fonts';
@import 'normalize';
html {
box-sizing: border-box;
}
// https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
* {
box-sizing: inherit;
&::before,
&::after {
box-sizing: inherit;
}
}
body {
width: 100%;
margin: 0;
font-size: 100%;
overflow-x: hidden;
}