From 9a698f6bd608c23136a160f502457f7efd4b4ad1 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Tue, 6 Feb 2018 17:37:49 -0500 Subject: [PATCH] Hide footer menu unless inside mobile app, ignore on web. --- app/www/static/css/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/www/static/css/index.css b/app/www/static/css/index.css index 8866890..c660110 100644 --- a/app/www/static/css/index.css +++ b/app/www/static/css/index.css @@ -254,6 +254,7 @@ button i { } footer{ + display: none; width: 100%; height: 50px; position: fixed; @@ -408,3 +409,6 @@ span.neg{ span.pos{ color: #20ce45; } +body.mobile footer{ + display: block; +}