Skip to content

Commit

Permalink
chore: disabled stylelint to allow display: -webkit-box
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisVershkov committed Dec 4, 2023
1 parent f374c55 commit ed45461
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Tooltip/Tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ $block: '.#{variables.$ns}tooltip';
}

&__content {
display: box;
// -webkit-line-clamp will not work without display: -webkit-box;
/* stylelint-disable-next-line */
display: -webkit-box;

-webkit-box-orient: vertical;
-moz-box-orient: vertical;
Expand Down

0 comments on commit ed45461

Please sign in to comment.