-
Notifications
You must be signed in to change notification settings - Fork 0
fix(seo): Google 소유권 검증값 갱신 #125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,6 +60,20 @@ | |
| min-width: 0; | ||
| } | ||
|
|
||
| .ark-site-footer { | ||
| grid-column: 1; | ||
| grid-row: 1; | ||
| position: sticky; | ||
| top: 2.5rem; | ||
| height: calc(100dvh - 5rem); | ||
|
Comment on lines
+64
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On non-mobile short routes such as the home page, this viewport-height footer occupies the same first-column, first-row grid cell as AGENTS.md reference: AGENTS.md:L94-L95 Useful? React with 👍 / 👎. |
||
| align-self: end; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On non-mobile routes whose content makes grid row 1 taller than the viewport, such as Archive and long articles, AGENTS.md reference: AGENTS.md:L94-L95 Useful? React with 👍 / 👎. |
||
| } | ||
|
|
||
| .ark-site-footer .ark-site-external-links { | ||
| height: 100%; | ||
| justify-content: flex-end; | ||
| } | ||
|
|
||
| .ark-home-statement { | ||
| max-width: 34rem; | ||
| margin: 0; | ||
|
|
@@ -164,7 +178,7 @@ | |
| .ark-site-external-links { | ||
| display: flex; | ||
| flex-direction: column; | ||
| margin-top: auto; | ||
| margin-top: 0; | ||
| pointer-events: auto; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commit description limits its impact to replacing the Google verification metadata, but this addition also changes every post-slug lookup, while other files redesign AppShell/footer behavior and rewrite navigation tests. None of those behavioral changes is required to rotate the verification token, so they should be removed from this commit or reviewed as separately scoped work rather than shipping under a metadata-only change.
AGENTS.md reference: AGENTS.md:L5-L5
Useful? React with 👍 / 👎.