From 3bf7e02d2ad6c6c3dc0e915f0e66ff37f77de4e6 Mon Sep 17 00:00:00 2001 From: Nik Tverd <61203447+niktverd@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:04:18 +0600 Subject: [PATCH] fix: max-height of post description (#140) --- src/components/PostCard/PostCard.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PostCard/PostCard.scss b/src/components/PostCard/PostCard.scss index 892c329a..8555c44d 100644 --- a/src/components/PostCard/PostCard.scss +++ b/src/components/PostCard/PostCard.scss @@ -76,7 +76,7 @@ $block: '.#{$namespace}post-card'; color: var(--g-color-text-primary); @supports (-webkit-line-clamp: $linesToShow) { - max-height: auto; + max-height: none; -webkit-line-clamp: $linesToShow; }