[fix] 소개페이지 a태그 클릭 시 파란색 전환효과 및 밑줄 표시 제거#351
Conversation
Walkthrough이 변경 사항은 Changes
Assessment against linked issues
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
✅ Deploy Preview for moadong ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
frontend/src/components/common/Header/Header.styles.ts (2)
74-75: 기본 상태 링크 스타일 재정의
color: inherit과text-decoration: none로 기본 링크 스타일을 제거한 점이 적절합니다. 다만 마우스 오버(:hover), 클릭(:active), 포커스(:focus) 상태에서도 동일한 스타일이 적용되는지 확인하거나, 한 번에 그룹으로 처리해 중복을 줄이시길 추천드립니다.color: inherit; text-decoration: none; + &:hover, + &:active, + &:focus { + color: inherit; + text-decoration: none; + }
77-80: 방문 링크(:visited) 스타일 그룹화 제안
:visited상태에도 상속된 색상과 밑줄 제거가 적용된 것은 좋습니다. 하지만 별도로 정의하기보다는 위의 상태들과 함께 묶어서 관리하면 코드 중복이 줄고 유지보수가 용이해집니다.- &:visited { - color: inherit; - text-decoration: none; - } + &:visited, &:hover, &:active, &:focus { + color: inherit; + text-decoration: none; + }

#️⃣연관된 이슈
📝작업 내용
중점적으로 리뷰받고 싶은 부분(선택)
논의하고 싶은 부분(선택)
🫡 참고사항
Summary by CodeRabbit