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
twin.macro와 비슷하게 tailwind의 atomic css방식을 css props에 적용하는 유틸 함수를 만듭니다. 예를들어
<SideBar css={tw`sticky mb-20 py-[20px]`} />
이렇게 쓰면
<SideBar css={ css`position: sticky; margin-bottom: 20px; padding-top: 20px; padding-bottom: 20px;` } />
로 변환이 됩니다.
The text was updated successfully, but these errors were encountered:
nan-noo
airman5573
Successfully merging a pull request may close this issue.
요약
twin.macro와 비슷하게 tailwind의 atomic css방식을 css props에 적용하는 유틸 함수를 만듭니다.
예를들어
이렇게 쓰면
로 변환이 됩니다.
The text was updated successfully, but these errors were encountered: