Commit 04e33a34 authored by Mattia Migliorini's avatar Mattia Migliorini

Fix units bug

parent ff4d419a
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
*/ */
@mixin font_size ($size: 16) { @mixin font_size ($size: 16) {
font-size: ($size / $base)em; font-size: ($size / $base)+em;
margin-bottom: (12 / $size)em; margin-bottom: (12 / $size)+em;
} }
@mixin box_sizing ($type: border-box) { @mixin box_sizing ($type: border-box) {
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
// CSS3 colunms // CSS3 colunms
@mixin columns($num: 3, $gap: 20) { @mixin columns($num: 3, $gap: 20) {
-moz-column-count: $num; -moz-column-count: $num;
-moz-column-gap: ($gap / $base)em; -moz-column-gap: ($gap / $base)+em;
-webkit-column-count: $num; -webkit-column-count: $num;
-webkit-column-gap: ($gap / $base)em; -webkit-column-gap: ($gap / $base)+em;
column-count: $num; column-count: $num;
column-gap: ($gap / $base)em; column-gap: ($gap / $base)+em;
} }
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment