Merge pull request #44 from snnsnn/master

Fix border-box resetting
This commit is contained in:
Jenil Gogari 2020-04-03 11:47:06 -04:00 committed by GitHub
commit 6b45794ce0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -14,17 +14,18 @@
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
* {
box-sizing: border-box;
}
html {
box-sizing: border-box;
font-size: 62.5%;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
line-height: 1.6;
font-size: var(--font-size);