]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix some text around media queries in the docs
authorMark Otto <markotto@twitter.com>
Wed, 18 Apr 2012 16:37:07 +0000 (09:37 -0700)
committerMark Otto <markotto@twitter.com>
Wed, 18 Apr 2012 16:37:07 +0000 (09:37 -0700)
docs/scaffolding.html
docs/templates/pages/scaffolding.mustache

index 20a9f5c73ceaba8b3c39b5e8d51f1efb0dae4d9f..caffa6af66ae6cac4e4539b47cef49edd01d15c1 100644 (file)
   @media (max-width: 480px) { ... }
 
   // Landscape phone to portrait tablet
-  @media (max-width: 768px) { ... }
+  @media (max-width: 767px) { ... }
 
   // Portrait tablet to landscape and desktop
-  @media (min-width: 768px) and (max-width: 980px) { ... }
+  @media (min-width: 768px) and (max-width: 979px) { ... }
 
   // Large desktop
-  @media (min-width: 1200px) { .. }
+  @media (min-width: 1200px) { ... }
 </pre>
     </div><!-- /.span -->
   </div><!-- /.row -->
index 40b264d03e87aac7e107dbee389d57946d53ab94..13c777a260b78b06381a8768cb403689d8cd91a7 100644 (file)
   @media (max-width: 480px) { ... }
 
   // {{_i}}Landscape phone to portrait tablet{{/i}}
-  @media (max-width: 768px) { ... }
+  @media (max-width: 767px) { ... }
 
   // {{_i}}Portrait tablet to landscape and desktop{{/i}}
-  @media (min-width: 768px) and (max-width: 980px) { ... }
+  @media (min-width: 768px) and (max-width: 979px) { ... }
 
   // {{_i}}Large desktop{{/i}}
-  @media (min-width: 1200px) { .. }
+  @media (min-width: 1200px) { ... }
 </pre>
     </div><!-- /.span -->
   </div><!-- /.row -->