Skip to content

Commit

Permalink
feat(Item): allowed display webkit box vendor prefix item style
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Kubantsev committed Dec 25, 2024
1 parent 092d740 commit 89a39e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/CompositeBar/Item/Item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ $block: '.#{variables.$ns}composite-bar-item';
}

&__title {
display: box;
/* NOTE @vladimir-kuba: Disable rule is needed to make a commit. */
/* stylelint-disable-next-line value-no-vendor-prefix */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
Expand Down

0 comments on commit 89a39e4

Please sign in to comment.