Skip to content

Commit

Permalink
Revert "Fix(hero): fix marquee and register button overlap"
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 authored Aug 26, 2024
1 parent 192e457 commit a5817bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/2024/src/components/landing/hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Bashaway } from '@/icons';

const Hero = () => {
return (
<div className="flex flex-col justify-center items-center gap-y-8 my-8">
<div className="h-[calc(100vh-70px-46px)] xs:h-[calc(100vh-90px-46px)] flex flex-col justify-center items-center gap-y-8">
<Bashaway className="w-[280px] sm:w-[400px] h-[58px] sm:h-[78px]" />
<BodyText className="lg:text-center max-w-5xl px-10 md:px-12">
A unique competition that keeps the coders around the island on their toes. Welcome to ./bashaway {currentYear},
Expand Down
2 changes: 1 addition & 1 deletion apps/2024/src/components/landing/marquee.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Bashaway } from '@/icons';

const Marquee = () => {
return (
<FastMarquee className="bg-black h-[46px] text-xl sm:text-[22px] text-white font-consolas">
<FastMarquee className="bg-black h-[46px] text-xl sm:text-[22px] text-white font-consolas absolute bottom-0 left-0">
<div className={twMerge('flex gap-x-12 items-center mr-12')}>
{Array(3)
.fill(0)
Expand Down
4 changes: 2 additions & 2 deletions apps/2024/src/pages/landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {

const Landing = () => {
return (
<div className="flex flex-col">
<>
<Hero />
<Marquee />
<Mission />
Expand All @@ -30,7 +30,7 @@ const Landing = () => {
<PastEvents />
<Gallery />
<Partners />
</div>
</>
);
};

Expand Down

0 comments on commit a5817bd

Please sign in to comment.