From d48c001ed1a8d5b4329680754f9d462f3632040d Mon Sep 17 00:00:00 2001 From: gauravsingh94 Date: Sat, 30 Dec 2023 20:17:08 +0530 Subject: [PATCH] Fixed-Issue-#1266 Bug Report When a new post is added, the latest post section in the organization's dashboard becomes distorted. --- src/components/OrganizationDashCards/CardItem.module.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/OrganizationDashCards/CardItem.module.css b/src/components/OrganizationDashCards/CardItem.module.css index 0330411b0c..05f3ee09f3 100644 --- a/src/components/OrganizationDashCards/CardItem.module.css +++ b/src/components/OrganizationDashCards/CardItem.module.css @@ -39,6 +39,12 @@ .cardItem .title { font-size: 1rem; flex: 1; + margin-right: 0.3rem; + word-wrap: break-word; + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; } .cardItem .time {