Skip to content

Commit

Permalink
fix(tooltip): rm unnecessary interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Dec 27, 2023
1 parent 4ffb57c commit d67a66c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bezier-react/src/styles/mixins/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
white-space: nowrap;
} @else if ($lineHeight != null ) {
display: -webkit-box;
max-height: calc(#{$line} * #{$lineHeight});
max-height: calc($line * $lineHeight);
overflow: hidden;
line-height: #{$lineHeight};
line-height: $lineHeight;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: $line;
Expand Down

0 comments on commit d67a66c

Please sign in to comment.