15 lines
251 B
SCSS
15 lines
251 B
SCSS
|
html {
|
||
|
font-size: 62.5%; // A common trick: now everything "2.0" rem will be 20pixels
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
|
||
|
a {
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
line-height: 1.88;
|
||
|
font-size: 1.8rem;
|
||
|
}
|
||
|
|