fix(favicon): 로고 D를 캔버스 정중앙으로 정렬 - #177
Merged
Merged
Conversation
text-anchor와 dominant-baseline이 없어 좌측 상단으로 치우치던 파비콘 로고를 정중앙에 배치하고, 렌더러 간 일관성을 위해 font-family를 명시
devy1540
enabled auto-merge (squash)
July 6, 2026 08:52
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.
목적
브라우저 탭에 표시되는 파비콘 로고("D")가 캔버스 좌측 상단으로 치우쳐 있던 문제를 해결한다.
내용(의도 포함)
favicon.svg는<text>에x·text-anchor·dominant-baseline이 없어 x=0(왼쪽 끝)에서 시작하고 세로도 위로 치우쳐 렌더됐다.text-anchor="middle"+x="50"로 가로 중앙,dominant-baseline="central"+y="50"로 세로 중앙 정렬을 적용.font-family가 없어 렌더러에 따라 serif(QuickLook)/sans(브라우저)로 갈리던 문제를 해결하기 위해 sans 스택을 명시.font-weight="700"적용.성공기준