Skip to content

Commit 377a30a

Browse files
committed
Fix height of donor-list card
1 parent a41a6f0 commit 377a30a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/CrowdFund/donors.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ export const DonorsList: FunctionComponent<Props> = ({ campaign }) => {
3636
<li
3737
style={{
3838
...style,
39+
position: 'static',
3940
top: Number(style.top) + GUTTER_SIZE / 2,
40-
height: Number(style.height) - GUTTER_SIZE,
41+
height: 'unset',
4142
}}
4243
className="flex items-center bg-white shadow my-4 py-2 rounded-lg">
4344
<div className="px-4">

0 commit comments

Comments
 (0)