We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b4f29 commit 8b1b3edCopy full SHA for 8b1b3ed
src/app/bounties/Card.js
@@ -28,7 +28,13 @@ export function BountiesCard({ data }) {
28
return (
29
<Link
30
href={`/bounties/${data.id}`}
31
- className="group flex flex-col relative cursor-pointer overflow-hidden rounded-2xl bg-white py-4 transition-shadow hover:shadow-lg [&>div]:px-4"
+ className={`
32
+ group flex flex-col relative cursor-pointer overflow-hidden rounded-2xl
33
+ bg-gradient-to-b ${
34
+ data.status === 3 ? "from-[#E5E5FE] to-[#FFFFFF]" : "bg-white"
35
+ }
36
+ py-4 transition-all duration-300 ease-in-out hover:shadow-lg hover:-translate-y-2 [&>div]:px-4
37
+ `}
38
>
39
<div>
40
<h5 className="mb-2 text-lg line-clamp-2">
0 commit comments