From 58b30d3c13dd4bc70c12af0c664e858316b2e265 Mon Sep 17 00:00:00 2001 From: daniel-c-harvey Date: Fri, 19 Jun 2026 15:26:07 -0400 Subject: [PATCH] feat(footer): add anonId privacy disclosure line Wraps existing footer row in .deepdrft-footer-main and adds a .deepdrft-footer-privacy paragraph below it with the approved Variant 1 copy. Mono fine-print at 0.55 rem / 70% opacity. --- .../Layout/DeepDrftFooter.razor | 15 +++++++++------ .../Layout/DeepDrftFooter.razor.css | 16 ++++++++++++++++ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor b/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor index ea20b9f..321f46a 100644 --- a/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor +++ b/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor @@ -1,8 +1,11 @@ \ No newline at end of file diff --git a/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor.css b/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor.css index ddd9f65..fb1a191 100644 --- a/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor.css +++ b/DeepDrftPublic.Client/Layout/DeepDrftFooter.razor.css @@ -6,6 +6,12 @@ background: var(--deepdrft-white); border-top: 1px solid var(--deepdrft-border); padding: 3rem; + display: flex; + flex-direction: column; + gap: 1.5rem; +} + +.deepdrft-footer-main { display: flex; align-items: center; justify-content: space-between; @@ -51,6 +57,16 @@ color: var(--deepdrft-muted); } +.deepdrft-footer-privacy { + font-family: var(--deepdrft-font-mono); + font-size: 0.55rem; + letter-spacing: 0.08em; + color: var(--deepdrft-muted); + opacity: 0.7; + margin: 0; + line-height: 1.6; +} + @media (max-width: 440px) { .deepdrft-footer { padding: 1.5rem;