This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 5615048a66172ecc787d87685a7fa527afe5ea92 Author: Daniel Gruno <[email protected]> AuthorDate: Fri Dec 10 19:20:42 2021 +0100 hide footer on small displays This fixes #169 --- webui/js/source/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/js/source/init.js b/webui/js/source/init.js index 89128a6..d7c68c2 100644 --- a/webui/js/source/init.js +++ b/webui/js/source/init.js @@ -32,7 +32,7 @@ window.addEventListener('keyup', keyCommands); window.addEventListener('load', function() { document.body.appendChild(new HTML('footer', { - class: 'footer' + class: 'footer hidden-xs' }, [ new HTML('div', { class: 'container'
