Skip to content

Commit 7cf1ce0

Browse files
Normalize comment format (#98)
1 parent 3faa07f commit 7cf1ce0

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

modern-normalize.css

+11-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ Use a better box model (opinionated).
1515
box-sizing: border-box;
1616
}
1717

18+
/**
19+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
20+
2. Correct the line height in all browsers.
21+
3. Prevent adjustments of font size after orientation changes in iOS.
22+
4. Use a more readable tab size (opinionated).
23+
*/
24+
1825
html {
19-
/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
2026
font-family:
2127
system-ui,
2228
'Segoe UI',
@@ -25,10 +31,10 @@ html {
2531
Arial,
2632
sans-serif,
2733
'Apple Color Emoji',
28-
'Segoe UI Emoji';
29-
line-height: 1.15; /* 1. Correct the line height in all browsers. */
30-
-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
31-
tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
34+
'Segoe UI Emoji'; /* 1 */
35+
line-height: 1.15; /* 2 */
36+
-webkit-text-size-adjust: 100%; /* 3 */
37+
tab-size: 4; /* 4 */
3238
}
3339

3440
/*

0 commit comments

Comments
 (0)