Skip to content

Commit

Permalink
chore: change color naming
Browse files Browse the repository at this point in the history
  • Loading branch information
gahyuun committed Feb 21, 2024
1 parent 96a91f4 commit b0be474
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/ui/view/atom/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export const ButtonVariants = cva(`flex justify-center items-center`, {
variants: {
variant: {
primary: 'bg-primary rounded-[100px] text-white border-0 hover:bg-primary-hover',
secondary: 'bg-white rounded-[100px] border-solid border-[1px] border-gray hover:bg-white-hover',
secondary: 'bg-white rounded-[100px] border-solid border-[1px] border-gray-6 hover:bg-white-hover',
text: 'font-medium text-slate-400 text-sm hover:text-slate-600',
delete: 'py-2 px-3.5 bg-[#35353559] rounded-[7px] text-white leading-5 font-medium text-[18px]',
delete: 'py-2 px-3.5 bg-gray-5 rounded-[7px] text-white leading-5 font-medium text-[18px]',
},
size: {
default: '',
Expand Down
2 changes: 1 addition & 1 deletion app/ui/view/molecule/list/list-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ type ListRootProps = {
};

export function ListRoot({ children }: ListRootProps) {
return <div className="rounded-2xl border-[1px] border-black-2 w-[800px]">{children}</div>;
return <div className="rounded-2xl border-[1px] border-black-2 w-full">{children}</div>;
}

0 comments on commit b0be474

Please sign in to comment.