Skip to content

Commit

Permalink
rebuild gutter optional and golden padding as optional right padding
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanDH committed Mar 8, 2016
1 parent cc416e4 commit 23f7e90
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
Binary file modified dist/fonts/fc-icons.eot
Binary file not shown.
Binary file modified dist/fonts/fc-icons.ttf
Binary file not shown.
Binary file modified dist/fonts/fc-icons.woff
Binary file not shown.
5 changes: 4 additions & 1 deletion dist/sass/_mixins/structure.scss
Original file line number Diff line number Diff line change
Expand Up @@ -475,5 +475,8 @@ $maxWrapWidth: 1200px;
$grpWidths: colsWidth($grpWidths);

padding-left: nth($grpWidths, 1) * 1%;
padding-right: nth($grpWidths, 2) * 1%;

@if length($grpWidths) == 3 {
padding-right: nth($grpWidths, 2) * 1%;
}
}
3 changes: 2 additions & 1 deletion dist/sass/_variables/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ $fontFamilyDefault: 'Source Sans Pro', sans-serif;

$defaultColsPadding: $fontSizeBase * 1px;

$responsiveGutter: true !default;


// Hardcoded sizes
//
Expand Down Expand Up @@ -137,4 +139,3 @@ $heroGradientMedium: rgba(0, 0, 0, .4) 0%,

$heroGradientDark: rgba(0, 0, 0, 0) 30%,
rgba(0, 0, 0, .8) 100%;

6 changes: 4 additions & 2 deletions dist/sass/general/useful-classes.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.wrap {
@include wrapThis(rem(1));
@include wrapThis(1);

@include wrapThis(rem(1.5), $bpMobileLandscape false);
@if $responsiveGutter {
@include wrapThis(1.5, $bpMobileLandscape false);
}
}
.wrap--nopad { @include wrapThis(); }

Expand Down

0 comments on commit 23f7e90

Please sign in to comment.