Fix Layout content height to consider footer-height when setting min-height (#1945)

pull/1997/head
Eric Enns 2019-01-31 12:02:51 -06:00 committed by Abdullah Almsaeed
parent 26a521bfa0
commit 163e2d4976
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ const Layout = (($) => {
}
const max = this._max(heights)
$(Selector.CONTENT).css('min-height', max - (heights.header))
$(Selector.CONTENT).css('min-height', max - heights.header - heights.footer)
$(Selector.SIDEBAR).css('min-height', max - heights.header)
}