fix: 퍼플/다크 배경 내 heading 텍스트 흰색으로 수정
전역 CSS h1~h6 { text-primary-900 } 규칙이 부모의 text-white 상속을
덮어쓰는 문제 수정. .text-white 컨테이너 내 모든 heading에
text-white 강제 적용 (통합 권장 사항 등 퍼플 배경 섹션 전체 적용).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
claude/bold-hawking
parent
4633560140
commit
2d1de59347
|
|
@ -84,6 +84,12 @@
|
|||
h1, h2, h3, h4, h5, h6 {
|
||||
@apply font-serif text-primary-900;
|
||||
}
|
||||
|
||||
/* Headings inside dark/white-text containers inherit white */
|
||||
.text-white h1, .text-white h2, .text-white h3,
|
||||
.text-white h4, .text-white h5, .text-white h6 {
|
||||
@apply text-white;
|
||||
}
|
||||
}
|
||||
|
||||
.glass-card {
|
||||
|
|
|
|||
Loading…
Reference in New Issue