From 388bb8544a375a3c4dbd70e401474468e64e54d0 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Apr 2026 13:15:14 +0000 Subject: [PATCH] =?UTF-8?q?style(design):=20FINDING-002=20=E2=80=94=20fix?= =?UTF-8?q?=20H5=20heading=20size=20(20px=20=E2=86=92=2016px)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit H5 was using Bootstrap default (1.25rem = 20px), larger than the H4 page title (18px). This inverted the heading hierarchy. Set H5 to 16px/600 per DESIGN.md section title spec. Co-Authored-By: Claude Opus 4.6 (1M context) --- api/app/static/css/style.css | 6 ++++++ api/app/templates/base.html | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/api/app/static/css/style.css b/api/app/static/css/style.css index c37261d..958ae1e 100644 --- a/api/app/static/css/style.css +++ b/api/app/static/css/style.css @@ -164,6 +164,12 @@ h4 { font-weight: 600; } +/* Section/modal titles — DESIGN.md: 16px/600 Display */ +h5 { + font-size: 16px; + font-weight: 600; +} + /* Data font — selective: codes, numbers, sums, dates. NOT text names. */ .font-data, code, .dif-sku, .detail-item-card .card-sku { font-family: var(--font-data); diff --git a/api/app/templates/base.html b/api/app/templates/base.html index 7a4fddb..9c6bef4 100644 --- a/api/app/templates/base.html +++ b/api/app/templates/base.html @@ -19,7 +19,7 @@ {% set rp = request.scope.get('root_path', '') %} - +