feat: mobile bottom navigation bar

5-item fixed bottom bar (Dashboard, Focus, Tasks, Calendar, More)
visible only on mobile (<768px). "More" opens a slide-up panel
with links to Notes, Meetings, Decisions, Contacts, Weblinks, Admin.
Active page highlighted with accent color. Desktop unaffected.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 21:36:51 +00:00
parent a427f7c781
commit 5092e7e015
3 changed files with 180 additions and 1 deletions

View File

@@ -170,6 +170,13 @@ function escHtml(s) {
}
// ---- Mobile More Panel ----
function toggleMobileMore() {
const panel = document.getElementById('mobile-more-panel');
if (panel) panel.classList.toggle('open');
}
// ---- Timer Pill (topbar running timer) ----
let timerStartAt = null;