From 3843a4bc939217c8af7c7e79222eac64f8550503 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 21 Nov 2016 09:49:30 -0500 Subject: [PATCH] Fix media query width --- _sass/_navigation.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_sass/_navigation.scss b/_sass/_navigation.scss index 48bd3f6d..08ba30e3 100644 --- a/_sass/_navigation.scss +++ b/_sass/_navigation.scss @@ -321,7 +321,7 @@ display: none; } - @include breakpoint(max-width $large) { + @include breakpoint(max-width ($large - 1px)) { label { position: relative; @@ -428,7 +428,7 @@ } } - @include breakpoint(max-width $large) { + @include breakpoint(max-width ($large - 1px)) { position: relative; max-height: 0; opacity: 0; @@ -442,7 +442,7 @@ } } -@include breakpoint(max-width $large) { +@include breakpoint(max-width ($large - 1px)) { .nav__list input:checked ~ .nav__items { -webkit-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;