Skip to content

Commit

Permalink
normalize.css: Incorporate useful changes from modern-normalize
Browse files Browse the repository at this point in the history
We went from modern normalize to normalize.css, because I feel that the latter is bigger and better maintained.

Maybe we will switch in the future again, or make our own...

See (fonts): sindresorhus/modern-normalize#16

and (tab-size): sindresorhus/modern-normalize#17

Thanks modern-normalize!
  • Loading branch information
Christian Kaindl committed Dec 25, 2018
1 parent 1759dca commit 68b5af4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/normalize.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
@import 'normalize.css';

:root {
-moz-tab-size: 4;
tab-size: 4;
}

*, *::before, *::after {
box-sizing: border-box;
}

body {
font-family:
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Helvetica,
Arial,
sans-serif,
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol';
}

code,
kbd,
samp,
pre {
font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace;
font-size: 1em;
}

0 comments on commit 68b5af4

Please sign in to comment.