Skip to content

Commit

Permalink
akhil sharma
Browse files Browse the repository at this point in the history
  • Loading branch information
Abh1noob committed Mar 18, 2024
1 parent 7f3b56e commit 6d9bea6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ export default function HomePage() {
{showModal === "leave" && <LeaveTeam />}
{showModal === "kick" && <Kick />}
<div className="mt-4 flex h-fit w-screen flex-col justify-between gap-4 px-4">
<TimelineComponent count={3} />
<TimelineComponent count={4} />
</div>

<div className="mt-4 flex h-fit w-screen flex-col justify-between gap-4 px-4 md:flex-row lg:h-[85%]">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const TimelineComponent = (props: { count: number }) => {
alt="half"
height={50}
width={50}
className="h-auto w-fit min-w-[320px]"
className="h-auto min-h-[100px] w-fit min-w-[300px]"
/>
<div className="flex-col m-1 flex w-full text-center">
<p>{timelineData[index]?.desc}</p>
Expand All @@ -115,7 +115,7 @@ const TimelineComponent = (props: { count: number }) => {
alt="none"
height={50}
width={50}
className="h-auto w-fit min-w-[320px]"
className="h-auto min-h-[100px] w-fit min-w-[300px]"
/>
<div className="flex-col m-1 flex w-full text-center">
<p>{timelineData[index]?.desc}</p>
Expand Down

0 comments on commit 6d9bea6

Please sign in to comment.