From 163e2d49762bbdb00a8f1426552c0ec4384d5fae Mon Sep 17 00:00:00 2001 From: Eric Enns Date: Thu, 31 Jan 2019 12:02:51 -0600 Subject: [PATCH] Fix Layout content height to consider footer-height when setting min-height (#1945) --- build/js/Layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/js/Layout.js b/build/js/Layout.js index 47ea420db..48a48351d 100644 --- a/build/js/Layout.js +++ b/build/js/Layout.js @@ -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) }