fixed space on the results page

This commit is contained in:
timhaller 2023-12-10 21:31:40 +01:00
parent 83571d967a
commit 462f951318
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export default async function Page({ params }: { params: { id: string } }) {
}
return (
<div className={"p-4 md:p-12 w-full h-screen bg-black"}>
<div className={"p-4 md:p-12 w-full h-screen bg-black flex flex-col justify-between gap-y-4"}>
<Image src={logo} alt={"Logo"} width={100} height={200} className={"mx-auto w-full md:w-[400px]"}/>
<Chart data={data}/>
</div>