Skip to content

Commit

Permalink
Closed styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Dec 3, 2023
1 parent bb9b6e2 commit af7d870
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import Link from "next/link";
export default function Closed() {
return (
<div>
<div className="absolute left-10 top-10">
<div className="absolute left-5 top-4 md:left-10 md:top-10">
<Link href="https://midday.ai">
<Icons.Logo />
</Link>
</div>

<div className="flex min-h-screen justify-center items-center">
<div className="pointer-events-none relative z-20 m-auto flex w-full max-w-[380px] flex-col">
<div className="flex min-h-screen justify-center items-center overflow-hidden p-6 md:p-0">
<div className="relative z-20 m-auto flex w-full max-w-[380px] flex-col">
<div className="flex w-full flex-col relative">
<div className="w-[2px] h-[2px] bg-primary rounded-full absolute -top-[20px] -left-[100px] animate-[pulse_2s_ease-in-out_infinite]" />
<div className="w-[3px] h-[3px] bg-primary rounded-full absolute -top-[70px] left-[5%] animate-[pulse_2s_ease-in-out_infinite]" />
Expand Down
1 change: 1 addition & 0 deletions apps/dashboard/src/components/transaction-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export function TransactionDetails({

useEffect(() => {
if (initialData) {
setData(initialData);
setLoading(false);
}
}, [initialData]);
Expand Down

0 comments on commit af7d870

Please sign in to comment.