studio - fixing a default mixin value used when defining font-size for elements

This commit is contained in:
Brian Talbot
2013-03-21 12:21:02 -04:00
parent e8401cf2bb
commit caae29a8ac

View File

@@ -6,7 +6,7 @@
@return #{$pxval / $base}em;
}
@mixin font-size($sizeValue: 1.6){
@mixin font-size($sizeValue: 16){
font-size: $sizeValue + px;
font-size: ($sizeValue/10) + rem;
}