Skip to content

Commit

Permalink
refactor: 태그랑 뱃지 + 형태 넓이조절
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Dec 3, 2024
1 parent 3329d1d commit d6953d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/components/NewIdeaCard/compound/Content/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Content = ({ onClick }: Props) => {
<Spacer size={12} />

<div css={{ display: 'flex', gap: 4 }}>
{branches.map((branch) => (
{identifyAbbreviationBadge(branches, 13).map((branch) => (
<Badge backgroundColor="c1" fontColor="w1" key={branch}>
{branch}
</Badge>
Expand All @@ -97,7 +97,7 @@ const Content = ({ onClick }: Props) => {
<Spacer size={14} />
<TagWrapper>
<Flex wrap="wrap" gap={6}>
{identifyAbbreviationBadge(skillCategories, 15).map((category) => (
{identifyAbbreviationBadge(skillCategories, 13).map((category) => (
<Badge key={category} backgroundColor="bg1" radius={50}>
{category}
</Badge>
Expand Down

0 comments on commit d6953d4

Please sign in to comment.