File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,14 @@ Use a better box model (opinionated).
15
15
box-sizing : border-box;
16
16
}
17
17
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
+
18
25
html {
19
- /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
20
26
font-family :
21
27
system-ui,
22
28
'Segoe UI' ,
@@ -25,10 +31,10 @@ html {
25
31
Arial,
26
32
sans-serif,
27
33
'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 */
32
38
}
33
39
34
40
/*
You can’t perform that action at this time.
0 commit comments