Skip to content

Commit 681c069

Browse files
committed
fix: adjust the alignment of the reward
1 parent b1a4b95 commit 681c069

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/cards/Bounty.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ export default function BountyCard({ bounty }: BountyProps): ReactElement {
5858

5959
return (
6060
<div className="p-5 flex md:flex-row-reverse md:space-x-5 px-5 min-h-32 md:h-auto md:w-full justify-between hover:bg-secondary relative">
61-
<div className="bg-theme-accent flex-col w-full h-full justify-between md:-space-y-1 pl-3 pr-5 mt-7 mb-5 ">
61+
<div className="bg-theme-accent flex-col w-full h-full justify-between md:-space-y-1 pl-3 pr-5 mt-7 mb-5">
6262
<Component className="relative w-full block" href={link}>
6363
<div className="font-medium text-md md:pt-1.5">{bounty.course ? bounty.course.name : bounty.name}</div>
6464
</Component>
6565
<div className="flex justify-between w-full md:block">
66-
<Component className="inline-flex md:flex h-2/3 md:flex-row flex-col-reverse justify-between" href={link}>
66+
<Component className="inline-flex md:flex md:flex-row flex-col-reverse justify-between" href={link}>
6767
<div className="text-sm pt-8 md:pt-2 md:pb-4 text-gray-600">{type()}</div>
6868
<div>
6969
<Reward type="gray" reward={bounty.reward}></Reward>

0 commit comments

Comments
 (0)