Skip to content

Commit

Permalink
Potential fix for #79
Browse files Browse the repository at this point in the history
In the 1200px media query, negate the `.app-bar.open, .app-bar.open ~
main transform` to remove the white area (~250px out) displayed. This
generally seems to be a FF only issue.
  • Loading branch information
addyosmani committed Jul 3, 2014
1 parent 637ebc2 commit 7fac034
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ main {
position: relative;
}

.app-bar.open,
.app-bar.open ~ main {
-webkit-transform: translate(0px, 0);
transform: translate(0px, 0);
}

.app-bar-container {
display: block;
height: 130px;
Expand Down

0 comments on commit 7fac034

Please sign in to comment.