Skip to content

Commit

Permalink
Fixed Header scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
rishit-singh committed Aug 21, 2023
1 parent 43a7e69 commit b7766ec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions frontend/src/app/hacks/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ import {IconLabel} from "@/app/hacks/IconLabel";

export function Header()
{
return <div className = {"bg-hacks-nav-black"}>
return <div className = {"bg-hacks-nav-black w-full"}>
<div className = {"grid grid-rows-2 h-full"}>
<div className={"grid items-end"}>
<div className={"flex flex-col"}>
<div className={"text-5xl self-center"}> Langara <span className={"text-lang-orange"}>Hacks</span></div>
<div className={"text-5xl max-[850px]:text-4xl self-center"}> Langara <span className={"text-lang-orange"}>Hacks</span></div>
</div>
</div>

<div className={"grid grid-cols-2"}>
<div className={" self-center"}>
<div className={"justify-self-end self-center w-[60vh] max-[850px]:w-[30vh]"}>
<IconLabel iconSrc={"/location_icon.png"} label={"T Gallery, Langara"} height={25} width={25}/>
</div>
<div className={"justify-self-start self-center"}>
</div>
<div className={"justify-self-start self-center w-[40vh] max-[850px]:w-[20vh]"}>
<IconLabel iconSrc={"/calender_icon.png"} label={"Sept 23rd, 2023"} height={25} width={25}/>
</div>
</div>
Expand Down

0 comments on commit b7766ec

Please sign in to comment.