qdouze-bludit-theme/scss/core/_box-sizing.scss

19 lines
240 B
SCSS
Raw Permalink Normal View History

2024-04-10 20:54:20 +02:00
/* 0.2 - Box-sizing
* Make sure that everything have its box-sizing to border-box
**/
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
body {
overflow-x: hidden;
text-rendering: optimizeLegibility;
}