Skip to content
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

refactor(Button): Button Medium 의 text size를 14px -> 16px로 변경합니다. #167

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/lucky-onions-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sopt-makers/ui': patch
---

Button 사이즈 md 일 때 text 사이즈 16px로 변경
2 changes: 1 addition & 1 deletion packages/ui/Button/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const paddings: Record<ButtonSizeTheme, string> = {

export const fontSizes: Record<ButtonSizeTheme, string> = {
sm: '14px',
md: '14px',
md: '16px',
lg: '18px',
};

Expand Down
Loading