Skip to content

Commit

Permalink
fix: ellipsis 함수 내 잘못 작성한 표현식 삽입 문법 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sujin-park committed May 6, 2022
1 parent e1df881 commit b7a8ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion styles/mixins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ellipsis = (lines = 0) => {
display: -webkit-box;
overflow: hidden;
-webkit-box-orient: vertical;
-webkit-line-clamp: $lines;
-webkit-line-clamp: ${lines};
text-overflow: ellipsis;
word-wrap: normal;
`
Expand Down

0 comments on commit b7a8ea8

Please sign in to comment.