Skip to content

Commit

Permalink
Added more spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
rishit-singh committed Aug 22, 2023
1 parent a78a066 commit e294545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/hacks/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import {SocialIcons} from "@/app/SocialIcons";
export function Body()
{
return <div className={"grid-cols-2 bg-hacks-bg-black"}>
<div className={"flex flex-col items-center gap-[5vh] max-[850px]:gap-[8vh] mt-10 max-[850px]:mt-[8vh]"}>
<div className={"flex flex-col items-center gap-[7vh] max-[850px]:gap-[8vh] mt-[8vh] max-[850px]:mt-[9vh]"}>
<span className={"text-3xl max-[850px]:text-xl"}>Registrations open soon!</span>
<Timer EndTime={new Date(2023, 8, 23, 8, 0, 0)}/>
</div>
<div className={"flex flex-row justify-center h-max gap-5 mt-[10vh] max-[850px]:mt-[25vh]"}>
<div className={"flex flex-row justify-center h-max gap-5 mt-[15vh] max-[850px]:mt-[25vh]"}>
<SocialIcons/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/hacks/IconLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Image from "next/image";
export function IconLabel({iconSrc, label, height, width}: {iconSrc: string, label: string, height: number, width: number})
{
return <div className={"grid grid-cols-2"}>
<Image src={iconSrc as string} alt={"Image"} height={height as number} width={width as number} className={"self-center justify-self-end"}></Image>
<Image src={iconSrc} alt={"Image"} height={height} width={width} className={"self-center justify-self-end"}></Image>
<span className={"text-lg max-[850px]:text-xs text-white self-center ml-2"}>{label}</span>
</div>;
}

0 comments on commit e294545

Please sign in to comment.