From d18ef952ec84706db07de1226430b4a890371e14 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 12 Mar 2026 11:37:31 +0800 Subject: [PATCH] feat(quick-1): add TCK logo to all 4 template navigation bars - Added .nav-logo CSS styling to dashboard.html, settings.html, calibration.html, files.html - Added logo image at start of each navigation bar using logo/[LOGO] TCK.svg - Logo displays at 40px height, touch-friendly sizing --- src/templates/calibration.html | 15 ++++ src/templates/dashboard.html | 126 +++------------------------------ src/templates/files.html | 15 ++++ src/templates/settings.html | 15 ++++ 4 files changed, 55 insertions(+), 116 deletions(-) diff --git a/src/templates/calibration.html b/src/templates/calibration.html index 4a17338a2..d42a70d42 100644 --- a/src/templates/calibration.html +++ b/src/templates/calibration.html @@ -62,6 +62,18 @@ border: 1px solid #dee2e6; } + /* Logo in navigation */ + .nav-logo { + display: flex; + align-items: center; + justify-content: center; + padding: 0 10px; + } + .nav-logo img { + max-height: 40px; + width: auto; + } + /* Calibration cards */ .calib-card { background: var(--card-bg); @@ -200,6 +212,9 @@