aboutsummaryrefslogtreecommitdiff
path: root/docs/scaffolding.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-25 09:57:40 -0800
committerMark Otto <[email protected]>2012-01-25 09:57:40 -0800
commitc381199968dc19a458f5e43e8b1aeebae284b7cc (patch)
treec0f8d45ca51c3c691ff50f68c9797aba389a3cec /docs/scaffolding.html
parent29b4ba0fc5a07ecbde11054dfa4406384a360d32 (diff)
downloadbootstrap-c381199968dc19a458f5e43e8b1aeebae284b7cc.tar.xz
bootstrap-c381199968dc19a458f5e43e8b1aeebae284b7cc.zip
fix media queries in scaffolding
Diffstat (limited to 'docs/scaffolding.html')
-rw-r--r--docs/scaffolding.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index 3e2ddf077..3a903cf57 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -357,7 +357,7 @@
<ol>
<li>Use the compiled responsive version, bootstrap.reponsive.css</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>
<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>
@@ -367,7 +367,7 @@
@media (max-width: 480px) { ... }
// Landscape phone to portrait tablet
- @media (min-width: 480px) and (max-width: 768px) { ... }
+ @media (max-width: 768px) { ... }
// Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 940px) { ... }