Skip to content
Merged
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
10 changes: 6 additions & 4 deletions src/components/ui/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ import { cn } from '@/lib/utils';
const buttonVariants = cva('bg-mono-white w-full border transition', {
variants: {
variant: {
primary: 'bg-mint-400 text-text-md-bold text-mono-white',
secondary: 'border-mint-500 text-text-sm-semibold text-mint-500',
tertiary: 'border-gray-400 text-text-sm-semibold text-gray-600',
primary: 'bg-mint-400 text-text-md-bold text-mono-white hover:bg-mint-600 active:bg-mint-700',
secondary:
'border-mint-500 text-text-sm-semibold text-mint-500 active:text-mint-700 active:border-mint-600 hover:bg-gray-50 active:bg-gray-100',
tertiary:
'text-text-sm-semibold border-gray-400 text-gray-600 hover:bg-gray-50 active:bg-gray-100',
},
size: {
md: 'h-13 rounded-2xl',
sm: 'h-10 rounded-xl',
},
disabled: {
true: '!cursor-not-allowed',
false: 'hover:opacity-80',
false: '',
},
},
compoundVariants: [
Expand Down