try to correct font scaling problems on Firefox

This commit is contained in:
Jeff Atwood 2014-12-16 23:26:29 -08:00
parent 5199ec413d
commit 1c8ddccb45
1 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,10 @@
html {
color: $primary;
font: #{$base-font-size}/#{$base-line-height} $base-font-family;
font-family: $base-font-family;
font-size: $base-font-size;
// font: #{$base-font-size}/#{$base-line-height} $base-font-family;
// this does not work, see https://meta.discourse.org/t/x/23193/11
background-color: $secondary;
overflow-y: scroll;
}