Fix panel heights to be even and use the entire window

This commit is contained in:
perroned 2015-05-13 07:39:22 -07:00
parent 56ed1deb7d
commit 98b063d199

View File

@ -565,7 +565,7 @@ body {
-moz-flex: 4 4 80%; -moz-flex: 4 4 80%;
-ms-flex: 4 4 80%; -ms-flex: 4 4 80%;
flex: 4 4 80%; flex: 4 4 80%;
height: 99%; height: 100%;
} }
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait { @media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
height: 100%; height: 100%;
@ -587,7 +587,7 @@ body {
flex-flow: column; flex-flow: column;
} }
width: 100%; width: 100%;
height: calc(~'100% - 55px'); height: calc(~'100% - 50px'); // 50px for narbar height
} }
.signOutIcon { .signOutIcon {
@ -692,3 +692,7 @@ body {
} }
} }
.top-bar {
line-height: 0;
}