We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
JSS가 이슈를 해결하지 않으므로 props를 styling에 사용하는 게 가능한 styled component로 옮겨야 함. 전체 컴포넌트 다 하진 말고 일단 일부만 migration 하는 걸로 시도해보겠음.
The text was updated successfully, but these errors were encountered:
BoardDetail.js CommentWriteBox.js EventHeadlineItem.js EventItem.js Header.js ImagePreview.js MyPageNav.js NavDrawer.js PopupManageItem.js
BoardDetail.js
CommentWriteBox.js
EventHeadlineItem.js
EventItem.js
Header.js
ImagePreview.js
MyPageNav.js
NavDrawer.js
PopupManageItem.js
Sorry, something went wrong.
Material-UI에 있는 컴포넌트의 경우 Styled 로 Overriding 하는 방법이 따로 필요하다.
원래 기본 style이 classes로 className을 넘겨서 덮어쓰는 방식이고 styled-component는 className이 없기 때문에, 아래의 방법 중 하나를 사용해야 한다.
&& { 어쩌고 저쩌고 } 로 처리하면 우선순위가 높아짐
&& { 어쩌고 저쩌고 }
!important를 항상 뒤에 붙임
!important
나머지 css는 필요시마다 Styled Component로 이동하는 것으로 함
No branches or pull requests
JSS가 이슈를 해결하지 않으므로 props를 styling에 사용하는 게 가능한 styled component로 옮겨야 함. 전체 컴포넌트 다 하진 말고 일단 일부만 migration 하는 걸로 시도해보겠음.
The text was updated successfully, but these errors were encountered: