Skip to content

Commit

Permalink
fix responsive media queries to use 979 and 980 where appropro
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Feb 17, 2012
1 parent 0369c1f commit 489276f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file modified docs/assets/bootstrap.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/assets/css/bootstrap-responsive.css
Expand Up @@ -102,7 +102,7 @@
margin: 0;
}
}
@media (min-width: 768px) and (max-width: 980px) {
@media (min-width: 768px) and (max-width: 979px) {
.row {
margin-left: -20px;
*zoom: 1;
Expand Down Expand Up @@ -278,7 +278,7 @@
width: 714px;
}
}
@media (max-width: 980px) {
@media (max-width: 979px) {
body {
padding-top: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion docs/scaffolding.html
Expand Up @@ -444,7 +444,7 @@ <h2>Supported devices</h2>
</tr>
<tr>
<td>Landscape tablets</td>
<td>768px to 980px</td>
<td>768px to 979px</td>
<td>42px</td>
<td>20px</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion docs/templates/pages/scaffolding.mustache
Expand Up @@ -368,7 +368,7 @@
</tr>
<tr>
<td>{{_i}}Landscape tablets{{/i}}</td>
<td>768px to 980px</td>
<td>768px to 979px</td>
<td>42px</td>
<td>20px</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions less/responsive.less
Expand Up @@ -154,7 +154,7 @@
// PORTRAIT TABLET TO DEFAULT DESKTOP
// ----------------------------------

@media (min-width: 768px) and (max-width: 980px) {
@media (min-width: 768px) and (max-width: 979px) {

// Fixed grid
#gridSystem > .generate(12, 42px, 20px);
Expand All @@ -171,7 +171,7 @@

// TABLETS AND BELOW
// -----------------
@media (max-width: 980px) {
@media (max-width: 979px) {

// UNFIX THE TOPBAR
// ----------------
Expand Down

0 comments on commit 489276f

Please sign in to comment.