From 29f305e8d262980a26f263c18a21c737403732ba Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 17 Aug 2026 10:29:12 -0400 Subject: [PATCH] fix(docs): hide the brand wordmark on phones The logo tile stays as the home link; the text pill crowded the header below 40rem. Co-Authored-By: Claude Fable 5 --- apps/docs/src/app/app.component.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/docs/src/app/app.component.ts b/apps/docs/src/app/app.component.ts index 4c78c7e..8306804 100644 --- a/apps/docs/src/app/app.component.ts +++ b/apps/docs/src/app/app.component.ts @@ -327,6 +327,13 @@ const DESKTOP = '(min-width: 64rem)'; color: var(--kinetic); } + /* phones: the logo tile alone is the home link */ + @media (max-width: 40rem) { + .brand { + display: none; + } + } + .top-actions { margin-left: auto; display: flex;