Skip to content

Commit

Permalink
var name misspelling in prefix and suffix
Browse files Browse the repository at this point in the history
Signed-off-by: Paul van Zyl <paul@nonacreative.com>
  • Loading branch information
Paul van Zyl committed Jul 29, 2014
1 parent 7d2dd5b commit 876d2ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _knife.sass
Expand Up @@ -160,15 +160,15 @@ $outputrems: true !default

// prefix : add padding before
@mixin kprefix($multiple, $margin:false)
$x : (ceil($body-font-size * $body-line-height)) * $multiplie
$x : (ceil($body-font-size * $body-line-height)) * $multiple
@if $margin == false
@include krem("padding-top",$x)
@else
@include krem("margin-top",$x)

// suffix : add padding after
@mixin ksuffix($multiple, $margin:false)
$x : (ceil($body-font-size * $body-line-height)) * $multiplie
$x : (ceil($body-font-size * $body-line-height)) * $multiple
@if $margin == false
@include krem("padding-bottom",$x)
@else
Expand Down

0 comments on commit 876d2ab

Please sign in to comment.