mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2025-03-04 08:59:18 +00:00
8 lines
173 B
SCSS
8 lines
173 B
SCSS
/* apply a natural box layout model to all elements, but allowing components to change */
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|