Skip to content

Commit

Permalink
Fix string in if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
quagliero committed Sep 11, 2014
1 parent ae65539 commit 15aafae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions matryo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ $matryo-bp-xl-name : 'xl' !default; /* [3] */
}
}
// between your 'xs' and 'sm' widths
@else if '$namespace == #{$matryo-bp-xs-name}-to-#{$matryo-bp-md-name}' {
@else if $namespace == '#{$matryo-bp-xs-name}-to-#{$matryo-bp-md-name}' {
@media (max-width: #{$matryo-bp-sm-width}) and (min-width: #{$matryo-bp-xs-width}) {
@content;
}
Expand All @@ -367,5 +367,4 @@ $matryo-bp-xl-name : 'xl' !default; /* [3] */
}
}


/* Fin. */

0 comments on commit 15aafae

Please sign in to comment.