Skip to content

Commit 132ec51

Browse files
committed
[UPD] Fixed height for the carousel cards
1 parent 9e6b330 commit 132ec51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/carousel-card.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function CarouselCard({pic, index, count, activeIndex, setActiveI
4242
</div>
4343
</div>
4444

45-
<ul className="py-4 hidden md:block">
45+
<ul className="py-4 hidden md:block" style={{height: `312px`}}>
4646
{person.highlights.map(hl => {
4747
return (
4848
<li key={hl}>
@@ -53,7 +53,7 @@ export default function CarouselCard({pic, index, count, activeIndex, setActiveI
5353
</ul>
5454
</div>
5555
</div>
56-
<ul className="py-4 block md:hidden">
56+
<ul className="py-4 block md:hidden" style={{height: `312px`}}>
5757
{person.highlights.map((hl, i) => {
5858
return (
5959
<li key={hl + i}>

0 commit comments

Comments
 (0)