From 7fac034548c98ca5c5de777e5f0378722d36812a Mon Sep 17 00:00:00 2001 From: Addy Osmani Date: Thu, 3 Jul 2014 11:49:25 +0100 Subject: [PATCH] Potential fix for #79 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. --- app/styles/main.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/styles/main.css b/app/styles/main.css index 6899d0e63..92e3fb4d6 100644 --- a/app/styles/main.css +++ b/app/styles/main.css @@ -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;