diff --git a/.gitignore b/.gitignore index f9b8795..41ca6e5 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ ENV/ # Databases *.db +*.db-shm +*.db-wal *.sqlite3 db/*.db diff --git a/static/css/base.css b/static/css/base.css index 2a28899..c0884d9 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -3,8 +3,9 @@ Place this at /static/css/base.css */ -/* Make the page itself non-scrollable so only the guide area scrolls */ -html, body { height: 100%; overflow: hidden; } +/* Make the page itself non-scrollable so only the guide area scrolls (only on guide page) */ +body.guide-page { height: 100%; overflow: hidden; } +html { height: 100%; } /* Authoritative Header + menus (single source of truth for site) */ body { font-family: Arial, sans-serif; margin:0; } diff --git a/templates/guide.html b/templates/guide.html index 7126ff3..08b7aa8 100644 --- a/templates/guide.html +++ b/templates/guide.html @@ -51,7 +51,7 @@ } - + {% include '_header.html' %}