]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
update max-widths values
authorJasonMiller <jason.miller@revzilla.com>
Thu, 22 Feb 2018 22:23:53 +0000 (17:23 -0500)
committerGitHub <noreply@github.com>
Thu, 22 Feb 2018 22:23:53 +0000 (17:23 -0500)
test/sass/_breakpoint.scss

index d013ac47dfd84048f21bfd1ab161c261922567e2..ef2754facc9657ded0fce981ebf004d400b7a899 100755 (executable)
 
   @include test('Breakpoint (Only Range) [function]') {
     $test: breakpoint(medium only);
-    $expect: '(min-width: 40em) and (max-width: 63.9375em)';
+    $expect: '(min-width: 40em) and (max-width: 63.9999em)';
 
     $test-lowest: breakpoint(small only);
-    $expect-lowest: '(max-width: 39.9375em)';
+    $expect-lowest: '(max-width: 39.9999em)';
 
     $test-highest: breakpoint(xxlarge only);
     $expect-highest: '(min-width: 90em)';
 
   @include test('Breakpoint (Named Down Range) [function]') {
     $test: breakpoint(medium down);
-    $expect: '(max-width: 63.9375em)';
+    $expect: '(max-width: 63.9999em)';
 
     @include assert-equal($test, $expect,
       'Creates a down range out of a medium breakpoint');
 
     $test-lowest: breakpoint(small down);
-    $expect-lowest: '(max-width: 39.9375em)';
+    $expect-lowest: '(max-width: 39.9999em)';
 
     @include assert-equal($test-lowest, $expect-lowest,
       'Creates a down range out of a small breakpoint');
     @include assert-equal(-zf-get-bp-val($config, xlarge), 1,
       'Given a nearby breakpoint, returns the next lowest value');
   }
-
 }