Skip to content

Commit

Permalink
fix: button size 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
yougyung committed Mar 27, 2024
1 parent 3fb4a86 commit 950789d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/(sub-page)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from 'next/image';
import background from '../../public/assets/background.png';
import NavigationBar from '../ui/view/molecule/navigation-bar';

interface LayoutProps {
children: React.ReactNode;
}
Expand Down
8 changes: 4 additions & 4 deletions app/ui/view/atom/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export const ButtonVariants = cva(`flex justify-center items-center`, {
},
size: {
default: '',
xs: 'px-5 py-3 text-lg font-medium leading-5',
sm: 'px-12 py-3.5 text-sm font-medium leading-3',
md: 'px-6 py-4 text-lg font-medium leading-3',
lg: 'px-32 py-6 text-3xl font-medium leading-9',
xs: 'px-5 py-2.5 text-sm font-medium leading-5',
sm: 'px-10 py-2.5 text-xs font-medium leading-3',
md: 'px-20 py-4 text-md font-medium leading-3',
lg: 'px-28 py-4 text-2xl font-medium leading-9',
},
},
});
Expand Down

0 comments on commit 950789d

Please sign in to comment.