Reorganized bar SCSS and removed flexbox from secondary

Secondary bars don't need flexbox, so they are removed.
This commit is contained in:
Max Lynch
2013-09-10 14:34:43 -05:00
parent 2fefe19b65
commit 659e0e0a9e

View File

@@ -1,13 +1,12 @@
.bar {
@include user-select(none);
display: -webkit-box;
display: box;
position: fixed;
left: 0;
right: 0;
z-index: 10;
display: -webkit-box;
display: box;
width: 100%;
height: $bar-height;
padding: $bar-padding-portrait;
@@ -17,6 +16,8 @@
border-style: solid;
border-width: 0;
@include user-select(none);
&.bar-header {
border-bottom-width: 1px;
}
@@ -222,9 +223,11 @@
.bar-header-secondary {
top: $bar-height;
display: block;
}
.bar-footer-secondary {
bottom: $bar-height;
display: block;
}
/* Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.