Skip to content

Commit

Permalink
Merge pull request #209 from modern-agile-team/develop
Browse files Browse the repository at this point in the history
Fix enable to line break in Item component
  • Loading branch information
woorim960 authored Oct 16, 2022
2 parents 13bb131 + 1fabe82 commit 755ce33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Item/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Description = ({
<HoverSection className="inner-hover" hoverdInnerBorderColor={hoverdInnerBorderColor}>
<h3 style={{ color: `${titleColor}` }}>{title}</h3>
<DescriptionWrapper ref={textRef} top={top} textRisingSpeed={textRisingSpeed}>
<text style={{ color: `${descriptionColor}` }}>{description}</text>
<pre style={{ color: `${descriptionColor}` }}>{`${description}`}</pre>
</DescriptionWrapper>
</HoverSection>
</DescriptionContainer>
Expand Down

0 comments on commit 755ce33

Please sign in to comment.