Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rich-starfishes-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@channel.io/bezier-react": patch
---

Change word-break property of Modal content
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const CloseIconButton = styled(Button)`
export const Description = styled.div`
box-sizing: border-box;
width: 100%;
word-break: break-all;
word-break: break-word;

/* stylelint-disable declaration-block-semicolon-newline-after, rule-empty-line-before, no-duplicate-selectors */
${Title} + & {
Expand All @@ -58,7 +58,7 @@ export const ChildrenContent = styled.div`
box-sizing: border-box;
width: 100%;
padding-top: 12px;
word-break: break-all;
word-break: break-word;
`

export const DescriptionText = styled(Text).attrs(() => ({
Expand Down