docs: reset box-sizing

This commit is contained in:
atomiks
2018-03-04 19:37:17 +10:00
parent 4cc399d22d
commit ce531b0030
3 changed files with 23 additions and 16 deletions

View File

@ -1,5 +1,12 @@
html {
font-size: 0.95rem;
box-sizing: border-box;
}
*,
*::after,
*::before {
box-sizing: inherit;
}
body {
@ -32,7 +39,7 @@ ol {
}
.container {
max-width: 1000px;
max-width: 64rem;
padding: 0 2%;
margin: 0 auto;
}