Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Oct 7, 2023
1 parent 481f69d commit 9099db9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@tailwind utilities;

.btn {
@apply bg-[#7116EB] relative rounded-lg flex items-center justify-center gap-2;
@apply bg-[#7116EB] relative rounded-lg flex items-center justify-center gap-2 hover:bg-[#781dff] transition-colors duration-200 ease-in-out active:bg-[#5e0fc8];
}

.balance {
Expand Down
28 changes: 15 additions & 13 deletions components/POAPModal/POAPModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,25 @@ export const POAPModal: FC<{
return (
<div className="fixed bottom-0 inset-x-0 px-2 pb-4">
<div className="w-full max-w-md3 mx-auto">
<div className="p-4 text-center relative flex flex-col items-center">
<div className="p-6 gap-4 text-center relative flex flex-col items-center">
<Creeper />
<div className="absolute inset-x-0 bottom-0 top-12 bg-[#14032C] rounded-3xl -z-10"></div>
<div className="w-24 h-24 bg-slate-100 rounded-full">
<img
src={metadata.image_url}
alt=""
className="w-full h-full object-cover"
/>
</div>
<div className="">
<div className="px-4 py-2 btn w-fit mx-auto -translate-y-3 font-bold">
Mint POAP
<div className="absolute inset-x-0 bottom-0 top-0 bg-[#14032C] rounded-3xl -z-10"></div>
<div className="w-full h-8 z-10 relative flex items-center justify-center">
<div className="w-24 h-24 bg-slate-100 rounded-full -translate-y-14">
<img
src={metadata.image_url}
alt=""
className="w-24 h-24 object-cover"
/>
</div>
<div className="z-10 absolute bottom-0 w-full">
<div className="px-6 py-2 btn w-fit mx-auto font-bold text-sm">
Mint POAP
</div>
</div>
</div>
<button
className="absolute right-4 top-16 text-xl opacity-50"
className="absolute right-4 text-xl opacity-50"
onClick={() => {
setDismissed(true);
}}
Expand Down
4 changes: 2 additions & 2 deletions hooks/useIYKRef.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ export const useIYKRef = async (reference?: string) => {

const result: IYKRefResponse = await response.json();

return DEBUG_VALUE as IYKRefResponse;
// return result;
// return DEBUG_VALUE as IYKRefResponse;
return result;
};

0 comments on commit 9099db9

Please sign in to comment.