Skip to content

Commit

Permalink
design(#138): 하이폰 속성 추가, 영역 벗어남 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yyypearl committed Aug 31, 2024
1 parent ffd12e9 commit c9bffaf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/common/ListBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,12 @@ const Time = styled.div`
${(props) => props.theme.fonts.caption2_m};
border-radius: 0px 8px 8px 0px;
background: rgba(255, 135, 0, 0.15);
white-space: nowrap;
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
&.mint {
color: ${theme.colors.sub_mint};
background: rgba(5, 206, 194, 0.15);
Expand Down

0 comments on commit c9bffaf

Please sign in to comment.