First fixes for #65 - zindex, overflow, min-height

This commit is contained in:
Addy Osmani 2014-06-18 00:54:55 +01:00
parent 5de715639b
commit eb2015f8dc

View File

@ -15,11 +15,12 @@ html, body {
body { body {
position: relative; position: relative;
font-family: 'Roboto Condensed', sans-serif; font-family: 'Roboto Condensed', 'Helvetica', 'Arial', sans-serif;
font-weight: 300; font-weight: 300;
background-color: #FFFFFF; background-color: #FFFFFF;
box-sizing: border-box; box-sizing: border-box;
overflow: hidden; overflow: hidden;
min-height: 100%;
} }
.app-bar { .app-bar {
@ -29,6 +30,8 @@ body {
top: 0; top: 0;
left: 0; left: 0;
background-color: #4285f4; background-color: #4285f4;
overflow: hidden;
z-index: 1;
} }
.app-bar-container { .app-bar-container {
@ -138,6 +141,7 @@ button.menu img {
color: #fefefe; color: #fefefe;
-webkit-transform: translate(-250px, 0); -webkit-transform: translate(-250px, 0);
transform: translate(-250px, 0); transform: translate(-250px, 0);
z-index: 1;
} }
.navdrawer-container.open { .navdrawer-container.open {