diff --git a/CHANGELOG.md b/CHANGELOG.md index ea888e924..4c2c33261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Changelog +### v0.4.40 + +#### Fixed + +- Fixed another footer placement bug. + ### v0.4.39 #### Updated diff --git a/package.json b/package.json index 42fa71b6d..b3cf9fab6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplified-circulation-web", - "version": "0.4.39", + "version": "0.4.40", "description": "Web Front-end for Library Simplified Circulation Manager Admin Interface", "repository": { "type": "git", diff --git a/src/stylesheets/config_tab_container.scss b/src/stylesheets/config_tab_container.scss index 206d1ec6e..3cca8fc65 100644 --- a/src/stylesheets/config_tab_container.scss +++ b/src/stylesheets/config_tab_container.scss @@ -82,4 +82,5 @@ $dangercolor: #D9534F; } } } + } diff --git a/src/stylesheets/footer.scss b/src/stylesheets/footer.scss index 2522c963f..7de6893f6 100644 --- a/src/stylesheets/footer.scss +++ b/src/stylesheets/footer.scss @@ -8,7 +8,7 @@ footer { z-index: 1; position: absolute; bottom: 0; - height: 56px; + height: 56px; p { margin: 2px 0; a, a:visited, a:link { @@ -20,3 +20,7 @@ footer { } } } + +.config footer { + position: relative; +}