From a5548f9c14b92d02e834a51f86cb88f10d4b9e1b Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Apr 2026 13:14:42 +0000 Subject: [PATCH] =?UTF-8?q?style(design):=20FINDING-001=20=E2=80=94=20tabl?= =?UTF-8?q?e=20font-size=2016px=20=E2=86=92=2014px=20per=20DESIGN.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DESIGN.md type scale specifies 14px body / 13px data for table cells. The table was using 1rem (16px), which is Bootstrap's default. This reduces data density on the most visible component (the order table). Co-Authored-By: Claude Opus 4.6 (1M context) --- api/app/static/css/style.css | 4 ++-- api/app/templates/base.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/app/static/css/style.css b/api/app/static/css/style.css index 45f61c3..c37261d 100644 --- a/api/app/static/css/style.css +++ b/api/app/static/css/style.css @@ -287,7 +287,7 @@ input[type="checkbox"] { /* ── Tables ──────────────────────────────────────── */ .table { - font-size: 1rem; + font-size: 0.875rem; /* 14px — DESIGN.md Body */ } .table th { @@ -305,7 +305,7 @@ input[type="checkbox"] { .table td { padding: 0.625rem 1rem; color: var(--text-secondary); - font-size: 1rem; + font-size: 0.875rem; /* 14px — DESIGN.md Body */ font-variant-numeric: tabular-nums; } diff --git a/api/app/templates/base.html b/api/app/templates/base.html index ddc9b87..7a4fddb 100644 --- a/api/app/templates/base.html +++ b/api/app/templates/base.html @@ -19,7 +19,7 @@ {% set rp = request.scope.get('root_path', '') %} - +