CommonButton에 textColor="white"를 적어 주었는데 여전히 글자색이 검정색으로 나오는 이슈 발생
textColor이 안 먹힘
-> 이유 : fontSize가 덮어버림.
아래와 같이 바꿔주니까 문제가 해결되었다.
CommonButton.tsx의 fontSize | CommonButton.tsx의 textColor | tailwind.config.ts |
custom-white
와 custom-black
색상을 정의한 방식이 잘못되었다. 이들의 정의는 Tailwind CSS의 기본 색상 클래스인 text-white
와 text-black
와 충돌했다. 따라서 custom-white
와 custom-black
가 무시된 것이다.Tailwind.css를 제대로 알고 했어야...