mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2026-06-21 07:12:28 +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;
|
|
}
|