Skip to content

Commit

Permalink
update scaffolding responsive section to reflect proper media query r…
Browse files Browse the repository at this point in the history
…anges
  • Loading branch information
mdo committed Feb 2, 2012
1 parent 1ebe51c commit f2d3026
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified docs/assets/bootstrap.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions docs/scaffolding.html
Expand Up @@ -338,13 +338,13 @@ <h2>Supported devices</h2>
</tr>
<tr>
<td>Landscape tablets</td>
<td>768px to 940px</td>
<td>768px to 980px</td>
<td>44px</td>
<td>20px</td>
</tr>
<tr>
<td>Default</td>
<td>940px and up</td>
<td>980px and up</td>
<td>60px</td>
<td>20px</td>
</tr>
Expand Down Expand Up @@ -390,7 +390,7 @@ <h2>Using the media queries</h2>
@media (max-width: 768px) { ... }

// Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 940px) { ... }
@media (min-width: 768px) and (max-width: 980px) { ... }

// Large desktop
@media (min-width: 1200px) { .. }
Expand Down
6 changes: 3 additions & 3 deletions docs/templates/pages/scaffolding.mustache
Expand Up @@ -262,13 +262,13 @@
</tr>
<tr>
<td>{{_i}}Landscape tablets{{/i}}</td>
<td>768px to 940px</td>
<td>768px to 980px</td>
<td>44px</td>
<td>20px</td>
</tr>
<tr>
<td>{{_i}}Default{{/i}}</td>
<td>940px and up</td>
<td>980px and up</td>
<td>60px</td>
<td>20px</td>
</tr>
Expand Down Expand Up @@ -314,7 +314,7 @@
@media (max-width: 768px) { ... }

// {{_i}}Portrait tablet to landscape and desktop{{/i}}
@media (min-width: 768px) and (max-width: 940px) { ... }
@media (min-width: 768px) and (max-width: 980px) { ... }

// {{_i}}Large desktop{{/i}}
@media (min-width: 1200px) { .. }
Expand Down

0 comments on commit f2d3026

Please sign in to comment.