mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
* Start organizing CSS according to ITCSS * Replace logo with rainbow db * Add Imagine Learning to experience * Refactor layout to use CSS grid
12 lines
175 B
SCSS
12 lines
175 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;
|
|
}
|