Skip to content

Commit

Permalink
[Fix] main title word break 설정 (#424)
Browse files Browse the repository at this point in the history
* design: h1에 word break 적용
  • Loading branch information
eonseok-jeon authored Aug 20, 2024
1 parent 47a2e19 commit 725b5a8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/common/components/Title/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const headingVar = styleVariants({
lineHeight: '60px',
letterSpacing: -0.8,
color: theme.color.baseText,
wordBreak: 'keep-all',
wordWrap: 'break-word',
},
TAB: {
/* Heading/40_B */
Expand All @@ -18,8 +20,12 @@ export const headingVar = styleVariants({
lineHeight: '60px',
letterSpacing: -0.8,
color: theme.color.baseText,
wordBreak: 'keep-all',
wordWrap: 'break-word',
},
MOB: {
...theme.font.HEADING_4_24_B,
wordBreak: 'keep-all',
wordWrap: 'break-word',
},
});

0 comments on commit 725b5a8

Please sign in to comment.