Skip to content

Commit

Permalink
Remove quotation marks from media queries
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaith committed Aug 23, 2016
1 parent ca684b0 commit ff0ccae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scss/globals/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ $medium-screen: emCalc(1280);
$large-screen: emCalc(1440);

$screen: "only screen";
$smartphone: "only screen and (max-width:'#{$small-screen}')";
$small: "only screen and (min-width:'#{$small-screen}')";
$medium: "only screen and (min-width:'#{$medium-screen}')";
$large: "only screen and (min-width:'#{$large-screen}')";
$smartphone: "only screen and (max-width:#{$small-screen})";
$small: "only screen and (min-width:#{$small-screen})";
$medium: "only screen and (min-width:#{$medium-screen})";
$large: "only screen and (min-width:#{$large-screen})";
$landscape: "only screen and (orientation: landscape)";
$portrait: "only screen and (orientation: portrait)";

Expand Down

0 comments on commit ff0ccae

Please sign in to comment.