Skip to content

Commit

Permalink
Fix customizer setup for 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kball committed Dec 15, 2016
1 parent e11bc07 commit 60566d1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions customizer/complete.json
Expand Up @@ -10,6 +10,7 @@
"badge",
"breadcrumbs",
"button_group",
"card",
"callout",
"close_button",
"menu",
Expand All @@ -29,6 +30,7 @@
"progress_bar",
"responsive_menu",
"responsive_toggle",
"responsive_accordion_tabs",
"reveal",
"slider",
"sticky",
Expand Down
6 changes: 6 additions & 0 deletions customizer/config.yml
Expand Up @@ -19,6 +19,9 @@ typography:
button:
sass: button

card:
sass: card

forms:
sass: forms

Expand Down Expand Up @@ -168,6 +171,9 @@ sticky:
- triggers
- mediaQuery

responsive_accordion_tabs:
js: zf.responsiveAccordionTabs

reveal:
sass: reveal
js: reveal
Expand Down
13 changes: 8 additions & 5 deletions scss/grid/_classes.scss
Expand Up @@ -55,11 +55,14 @@
}
}

// Static (unresponsive) row gutters
@each $breakpoint, $value in $grid-column-gutter {
&.#{$gutter}-#{$breakpoint} {
> .#{$column} {
@include grid-col-gutter($value);
@if type-of($grid-column-gutter) == 'map' {
// Static (unresponsive) row gutters
//
@each $breakpoint, $value in $grid-column-gutter {
&.#{$gutter}-#{$breakpoint} {
> .#{$column} {
@include grid-col-gutter($value);
}
}
}
}
Expand Down

0 comments on commit 60566d1

Please sign in to comment.