Skip to content

Commit

Permalink
Merge pull request #4965 from 5im0n/fix-bar-title-height
Browse files Browse the repository at this point in the history
fix(bar): set correct title bar height
  • Loading branch information
danbucholtz committed May 10, 2016
2 parents 62fdd63 + 9cbd676 commit 6a5e6bc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions scss/_bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,11 @@
&.item-input-inset {
position: absolute;
}

.title {
height: $bar-footer-height - 1;
line-height: $bar-footer-height;
}
}

// Don't render padding if the bar is just for tabs
Expand All @@ -377,11 +382,21 @@
top: $bar-height;

height: $bar-subheader-height;

.title {
height: $bar-subheader-height - 1;
line-height: $bar-subheader-height;
}
}
.bar-subfooter {
bottom: $bar-footer-height;

height: $bar-subfooter-height;

.title {
height: $bar-subfooter-height - 1;
line-height: $bar-subfooter-height;
}
}

.nav-bar-block {
Expand Down

0 comments on commit 6a5e6bc

Please sign in to comment.