Skip to content

Commit

Permalink
Merge pull request #30 from justinhough/hotfix-block-layout
Browse files Browse the repository at this point in the history
padding block layout using same classes as margin
  • Loading branch information
justinhough committed Jul 1, 2016
2 parents 7d5ea14 + a070204 commit 3af5505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/sass/centurion/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
$num: $i;
$value: $i * $default-font-size;

$pt: #{$margin-top}-#{$num};
$pb: #{$margin-bottom}-#{$num};
$pbot: #{$margin-both}-#{$num};
$pt: #{$padding-top}-#{$num};
$pb: #{$padding-bottom}-#{$num};
$pbot: #{$padding-both}-#{$num};

.#{$pt} {
@include rem(padding-top, $value);
Expand Down

0 comments on commit 3af5505

Please sign in to comment.