-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
[Feat] breakpoint theme 추가 #273
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Bundle SizesCompared against d4bc7f9
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
media query 이전 기수 코드 참고해서
${mediaQuery('xs')} {
height: 200px;
}
이런식으로 하는 건 어때요??
src/components/Button/Button.tsx
Outdated
`} | ||
|
||
${size === 'lg' && | ||
css` | ||
width: 100%; | ||
padding: 0 24px; | ||
height: 54px; | ||
|
||
@media screen and (max-width: ${theme.breakpoints.mobile}) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이전 기수 웹 사이트 코드에서 봤는데
요거 참고해서 만들어두면 좀 더 가독성 좋을것 같아요 !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
* feat: 버튼 사이즈 추가, disabled 추가 * feat: active hover 상태 추가 * fix: disabled 순서 변경 * [Feat] breakpoint theme 추가 (#273) * feat: breakpoint add * feat: mobile button 추가 * feat: media query 이전 기수 처럼 변경
작업 내용