mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-28 12:48:16 +00:00
fix some text around media queries in the docs
This commit is contained in:
parent
5fa0fcc888
commit
178a9f3b51
2 changed files with 6 additions and 6 deletions
|
|
@ -533,13 +533,13 @@
|
||||||
@media (max-width: 480px) { ... }
|
@media (max-width: 480px) { ... }
|
||||||
|
|
||||||
// Landscape phone to portrait tablet
|
// Landscape phone to portrait tablet
|
||||||
@media (max-width: 768px) { ... }
|
@media (max-width: 767px) { ... }
|
||||||
|
|
||||||
// Portrait tablet to landscape and desktop
|
// Portrait tablet to landscape and desktop
|
||||||
@media (min-width: 768px) and (max-width: 980px) { ... }
|
@media (min-width: 768px) and (max-width: 979px) { ... }
|
||||||
|
|
||||||
// Large desktop
|
// Large desktop
|
||||||
@media (min-width: 1200px) { .. }
|
@media (min-width: 1200px) { ... }
|
||||||
</pre>
|
</pre>
|
||||||
</div><!-- /.span -->
|
</div><!-- /.span -->
|
||||||
</div><!-- /.row -->
|
</div><!-- /.row -->
|
||||||
|
|
|
||||||
6
docs/templates/pages/scaffolding.mustache
vendored
6
docs/templates/pages/scaffolding.mustache
vendored
|
|
@ -456,13 +456,13 @@
|
||||||
@media (max-width: 480px) { ... }
|
@media (max-width: 480px) { ... }
|
||||||
|
|
||||||
// {{_i}}Landscape phone to portrait tablet{{/i}}
|
// {{_i}}Landscape phone to portrait tablet{{/i}}
|
||||||
@media (max-width: 768px) { ... }
|
@media (max-width: 767px) { ... }
|
||||||
|
|
||||||
// {{_i}}Portrait tablet to landscape and desktop{{/i}}
|
// {{_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}}
|
// {{_i}}Large desktop{{/i}}
|
||||||
@media (min-width: 1200px) { .. }
|
@media (min-width: 1200px) { ... }
|
||||||
</pre>
|
</pre>
|
||||||
</div><!-- /.span -->
|
</div><!-- /.span -->
|
||||||
</div><!-- /.row -->
|
</div><!-- /.row -->
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue