Browse code

Add ascendant font size parameter to font size function

Benjamin Roth authored on29/09/2015 11:20:40
Showing1 changed files
... ...
@@ -6,8 +6,8 @@
6 6
 /**
7 7
  * Functions
8 8
  */
9
-@function font-size($size) {
10
-  @return $size / $font-size-default * 100%
9
+@function font-size($size,$ascendant-font-size: $font-size-default) {
10
+  @return $size / $ascendant-font-size * 100%
11 11
 }
12 12
 
13 13
 /**