Skip to content

Commit

Permalink
Fixed height of broadcast cards
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamgaur99 committed Jul 31, 2024
1 parent 0bc0e79 commit 86ff430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function Carousel(props) {
className={style["card-text"]}
dangerouslySetInnerHTML={{
__html: DOMPurify.sanitize(
truncatedContent(item.content, 250)
truncatedContent(item.content, 170)
),
}}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

.slide-card {
position: relative;
min-height: 31em;
height: 31em;
min-width: 20em;
border-radius: 15px;
margin: 30px;
Expand Down Expand Up @@ -65,7 +65,6 @@
.card-text {
line-height: 1.4;
padding: 1em;
padding-top: 2em;
text-align: justify;
text-justify: distribute-all-lines;
font-size: 14px;
Expand Down

0 comments on commit 86ff430

Please sign in to comment.