Skip to content

Commit

Permalink
Merge pull request #74 from han-kimm/feat/chip,inputtext
Browse files Browse the repository at this point in the history
⚡️ fix: Chip css 수정
  • Loading branch information
naya-h2 authored Feb 7, 2024
2 parents 9f81440 + 772417a commit 0edbe7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/_components/chip/Chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Chip = <T extends Kind>({ label, kind, theme = "light" }: Props<T>) => {
};

return (
<div className={`w-max rounded-lg px-8 py-4 ${colorStyle()}`}>
<div className={`flex-center h-20 w-max rounded-lg px-8 ${colorStyle()}`}>
<span className="text-12 font-600">{label}</span>
</div>
);
Expand Down

0 comments on commit 0edbe7f

Please sign in to comment.