fix(portal,kb): normalize detail heading scale #473
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/MAPPS-408-heading-scale"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Implements the BUNYIP-408... MAPPS-408 slice of the 2026-08-04 mokosh-apps UI audit: heading-scale drift (F8, F9).
F8: portal detail record-headlines
The three portal detail pages rendered the same-role record headline three different ways: ticket
h1 text-xl font-bold, invoiceh2 text-2xl font-bold, quoteh1 text-xl font-semibold(divergent element, size, and weight). All three now render ash2 text-xl font-bold text-content. The portal list-page titles (My Tickets, Invoices, Quotes, Knowledge Base) keeptext-2xl font-bold- those are page titles at the app-wide scale, not record headlines, so they are intentionally untouched.F9: KB reader title
The KB article reader hand-rolled its title as
text-2xl font-semibold, off thePageHeaderscale (text-2xl sm:text-3xl font-bold) that KB's own list page uses. Bumped tofont-boldand addedsm:text-3xl, keepingtruncateand the custom 3-pane layout.Verification
Diff-reviewed (no local cargo on this box): four single-attribute changes inside valid RSX. CI runs fmt/clippy/wasm-build/tests.
#MAPPS-408