Skip to content

Commit

Permalink
Merge pull request #48 from nethmalds/main
Browse files Browse the repository at this point in the history
refactor: timeline and countdown updated
  • Loading branch information
nethmalds authored Oct 3, 2024
2 parents cad0be9 + c5fffb7 commit e4764ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/sections/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Timeline = () => {
</div>

<div className="relative col-span-1 w-full h-full flex justify-center items-center md:hidden">
<div className="h-full mt-2 w-1 bg-gradient-to-b from-white to-white" />
<div className="h-full mt-2 w-1 bg-gradient-to-b from-timelinefill via-timelinefill via-50% to-white" />
<div className="top-0 absolute w-6 h-6 rounded-full bg-timelinefill z-10 text-white text-center" />
</div>
<div className="md:col-span-4 w-full h-full md:pt-14 mb-5 col-span-8 flex justify-center items-center md:ml-[1rem]">
Expand All @@ -49,7 +49,7 @@ const Timeline = () => {
/>
</div>
<div className="relative col-span-1 w-full h-full md:flex hidden justify-center items-center">
<div className="h-[100%] mt-32 w-1 bg-gradient-to-b from-white to-white" />
<div className="h-[100%] mt-32 w-1 bg-gradient-to-b from-timelinefill via-timelinefill via-50% to-white" />
<div className="top-0.5 md:top-16 absolute w-6 h-6 rounded-full bg-timelinefill z-10 text-white text-center" />
</div>
<div className="col-span-4 w-full h-full md:mt-14 mb-5 md:block hidden">
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/countdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const CountdownComponent: React.FC = () => {
setIsClient(true);
}, []);

const ieeeDay = new Date("2024-10-07T00:00:00");
const ieeeDay = new Date("2024-10-07T09:00:00");

const renderer = ({
days,
Expand Down

0 comments on commit e4764ed

Please sign in to comment.