fix(website): wrap privacy page content in .docs-content#51
Merged
Conversation
The bare <h2> tags in privacy.html were falling under the global h2 selector (clamp(2rem, 3.5vw, 2.75rem)), making them as large as top-level page hero headings. Wrapping the content in .docs-content applies the styled variant (1.875rem with a bottom border separator) that the rest of the site uses for body content. Each policy section is also now its own <section> so the 56px bottom margin defined in .docs-content section provides consistent spacing between policy items. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The privacy page used bare `
` tags that fell under the global `h2` selector (`clamp(2rem, 3.5vw, 2.75rem)`) — same size as a hero heading — instead of the body-content size used everywhere else on the site (`1.875rem`, with a border-bottom separator).
Fix
Test plan
🤖 Generated with Claude Code