From bd567019c97a1e292127e6ec5eb8a87c3d0ce73e Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Fri, 5 Jun 2015 10:14:17 -0400 Subject: [PATCH] Added large-down and medium-down as viable media queries. --- root/scss/_settings.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/root/scss/_settings.scss b/root/scss/_settings.scss index 7af3a57..f3999fb 100644 --- a/root/scss/_settings.scss +++ b/root/scss/_settings.scss @@ -174,9 +174,13 @@ $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})"; $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})"; $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})"; +$medium-down: "#{$screen} and (min-width:#{lower-bound($small-range)}) and (max-width:#{upper-bound($medium-range)})"; + $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})"; $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})"; +$large-down: "#{$screen} and (min-width:#{lower-bound($small-range)}) and (max-width:#{upper-bound($large-range)})"; + $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})"; $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})"; -- 2.17.1