Skip to content

Commit

Permalink
Fix variable-exists reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kball committed Jun 19, 2017
1 parent 81d3837 commit eacdcfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/components/_breadcrumbs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $breadcrumbs-item-uppercase: true !default;
$breadcrumbs-item-separator: true !default;

// If it exists $breadcrumbs-item-slash is used to build $breadcrumbs-item-separator. See the documentation.
@if variable-exists($breadcrumbs-item-slash) {
@if variable-exists(breadcrumbs-item-slash) {
$breadcrumbs-item-separator: $breadcrumbs-item-slash;
}

Expand All @@ -56,7 +56,7 @@ $breadcrumbs-item-separator-item-rtl: '\\' !default;
$breadcrumbs-item-separator-color: $medium-gray !default;

// If it exists $breadcrumbs-item-slash-color is used to build $breadcrumbs-item-separator-color. See the documentation.
@if variable-exists($breadcrumbs-item-slash-color) {
@if variable-exists(breadcrumbs-item-slash-color) {
$breadcrumbs-item-separator-color: $breadcrumbs-item-slash-color;
}

Expand Down

0 comments on commit eacdcfd

Please sign in to comment.