Commit c3811999 authored by Mark Otto's avatar Mark Otto

fix media queries in scaffolding

parent 29b4ba0f
...@@ -357,7 +357,7 @@ ...@@ -357,7 +357,7 @@
<ol> <ol>
<li>Use the compiled responsive version, bootstrap.reponsive.css</li> <li>Use the compiled responsive version, bootstrap.reponsive.css</li>
<li>Add @import "responsive.less" and recompile Bootstrap</li> <li>Add @import "responsive.less" and recompile Bootstrap</li>
<li>Compile responsive.less as a separate file and include that</li> <li>Modify and recompile responsive.less as a separate</li>
</ol> </ol>
<p><strong>Why not just include it?</strong> Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.</p> <p><strong>Why not just include it?</strong> Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.</p>
</div> </div>
...@@ -367,7 +367,7 @@ ...@@ -367,7 +367,7 @@
@media (max-width: 480px) { ... } @media (max-width: 480px) { ... }
// Landscape phone to portrait tablet // Landscape phone to portrait tablet
@media (min-width: 480px) and (max-width: 768px) { ... } @media (max-width: 768px) { ... }
// Portrait tablet to landscape and desktop // Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 940px) { ... } @media (min-width: 768px) and (max-width: 940px) { ... }
......
...@@ -294,7 +294,7 @@ ...@@ -294,7 +294,7 @@
<ol> <ol>
<li>{{_i}}Use the compiled responsive version, bootstrap.reponsive.css{{/i}}</li> <li>{{_i}}Use the compiled responsive version, bootstrap.reponsive.css{{/i}}</li>
<li>{{_i}}Add @import "responsive.less" and recompile Bootstrap{{/i}}</li> <li>{{_i}}Add @import "responsive.less" and recompile Bootstrap{{/i}}</li>
<li>{{_i}}Compile responsive.less as a separate file and include that{{/i}}</li> <li>{{_i}}Modify and recompile responsive.less as a separate{{/i}}</li>
</ol> </ol>
<p>{{_i}}<strong>Why not just include it?</strong> Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.{{/i}}</p> <p>{{_i}}<strong>Why not just include it?</strong> Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.{{/i}}</p>
</div> </div>
...@@ -304,7 +304,7 @@ ...@@ -304,7 +304,7 @@
@media (max-width: 480px) { ... } @media (max-width: 480px) { ... }
// {{_i}}Landscape phone to portrait tablet{{/i}} // {{_i}}Landscape phone to portrait tablet{{/i}}
@media (min-width: 480px) and (max-width: 768px) { ... } @media (max-width: 768px) { ... }
// {{_i}}Portrait tablet to landscape and desktop{{/i}} // {{_i}}Portrait tablet to landscape and desktop{{/i}}
@media (min-width: 768px) and (max-width: 940px) { ... } @media (min-width: 768px) and (max-width: 940px) { ... }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment