Added font smoothing into main

This commit is contained in:
Mike Francis 2014-06-03 14:32:40 +01:00
parent 28db444950
commit 590f46da87
1 changed files with 5 additions and 1 deletions

View File

@ -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;
}
}
}