Skip to content

Commit

Permalink
Normalize comment format (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddybradford authored Jan 11, 2025
1 parent 3faa07f commit 7cf1ce0
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions modern-normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ Use a better box model (opinionated).
box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/

html {
/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
font-family:
system-ui,
'Segoe UI',
Expand All @@ -25,10 +31,10 @@ html {
Arial,
sans-serif,
'Apple Color Emoji',
'Segoe UI Emoji';
line-height: 1.15; /* 1. Correct the line height in all browsers. */
-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
'Segoe UI Emoji'; /* 1 */
line-height: 1.15; /* 2 */
-webkit-text-size-adjust: 100%; /* 3 */
tab-size: 4; /* 4 */
}

/*
Expand Down

0 comments on commit 7cf1ce0

Please sign in to comment.