Added font smoothing into main
This commit is contained in:
parent
28db444950
commit
590f46da87
|
@ -3,6 +3,10 @@ html {
|
|||
color: $base-colour;
|
||||
font: #{($base-font-size * 6.25) * 1%}/#{$base-line-height} $base-font-stack;
|
||||
min-height: 100%;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
a {
|
||||
|
@ -103,4 +107,4 @@ table {
|
|||
padding: ($base-margin-bottom / 4);
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue