Skip to content

Commit

Permalink
Merge pull request #674 from hannu/fix-custom-headers
Browse files Browse the repository at this point in the history
Add missing default option to section header variables
  • Loading branch information
hannu committed Jun 18, 2015
2 parents 1b5960f + 42f0948 commit f9997a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/app/sass/_styleguide_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ $nav-item-text-color: $default-action-color !default;
$nav-item-ref-color: darken($default-action-color, 10) !default;

// Header
$section-header-color: $primary-color;
$section-header-ref-color: white;
$section-header-text-color: $secondary-color;
$active-section-header-color: lighten($primary-color, 17%);
$active-section-header-ref-color: $section-header-ref-color;
$active-section-header-text-color: $section-header-text-color;
$section-header-color: $primary-color !default;
$section-header-ref-color: white !default;
$section-header-text-color: $secondary-color !default;
$active-section-header-color: lighten($primary-color, 17%) !default;
$active-section-header-ref-color: $section-header-ref-color !default;
$active-section-header-text-color: $section-header-text-color !default;

// Fonts
$primary-font: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
Expand Down

0 comments on commit f9997a2

Please sign in to comment.