This PR's purpose is to remove some older, unnecessary, stuff some our base sass file. Other stuff I removed from the <body> is opinionated stuff that IMO does not make for a sane, minimal starting-point. For example, having a width/height and position value might cause someone issues.
removed unnecessary -moz-::selection and -ms-text-size-adjust rules – no longer needed per caniuse
simplify box-sizing. instead of inheriting it from html through universal selector, just have it in the same block. low priority
remove opinionated rules on like overflow-x: hidden, width, height, position
added margin: 0 to body per normalize css
move font-size to body for better form inheritance
This PR's purpose is to remove some older, unnecessary, stuff some our base sass file. Other stuff I removed from the
<body>
is opinionated stuff that IMO does not make for a sane, minimal starting-point. For example, having a width/height and position value might cause someone issues.