Grunt SVG stuff and general tidy-up

This commit is contained in:
Mike Francis 2014-05-08 11:24:17 +01:00
parent 4eade92a01
commit b0be6463a8
14 changed files with 121 additions and 25 deletions

View file

@ -4,12 +4,7 @@
}
}
@function calculate-rem($px, $base: $base-font-size) {
$rem: $px / $base;
@return #{$rem}rem;
}
@mixin font-size($px) {
font-size: $px + px;
font-size: calculate-rem($px);
font-size: #{$px / $base-font-size}rem;
}