Skip to content

Commit

Permalink
fix: 分割可能でない単語がHintTextに含まれていたときにあふれないようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
abcang committed Dec 20, 2024
1 parent e2979aa commit 239eca1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/react-sandbox/src/components/HintText/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ const IconWrap = styled.div`
const Text = styled.p`
${theme((o) => [o.font.text2, o.typography(14)])}
margin: 0;
min-width: 0;
overflow-wrap: break-word;
`

function styledProps(props: Props) {
Expand Down

0 comments on commit 239eca1

Please sign in to comment.