Skip to content

Commit

Permalink
teri mummy
Browse files Browse the repository at this point in the history
  • Loading branch information
Abh1noob committed Mar 17, 2024
1 parent 10b2043 commit 25739fb
Show file tree
Hide file tree
Showing 3 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 @@ -422,7 +422,7 @@ export default function HomePage() {
) : (
<TeamCard {...teamData} />
)}
<div className="flex flex-col gap-y-4">
<div className="flex flex-col gap-y-4 ">
<CustomCard
title="Project Submission"
cardImage="ideaSubmissionImg"
Expand Down
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/components/teamCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const TeamCard: React.FC<teamDataProps> = (props) => {
<div>
<div className="h-fit w-full rounded-xl bg-white md:w-[32vw]">
<div className="flex w-full items-center justify-between pl-6 pt-4 font-semibold text-[#45464E]">
<p>Your Devsoc Team</p>
<p>Your Team</p>
{isLeader ? (
<div
className="mx-2 flex flex-row items-center justify-between gap-3 rounded-lg border-2 border-[#53545C] px-2 py-1 transition-all duration-150 ease-in-out hover:cursor-pointer hover:bg-black/10"
Expand Down
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/components/track/TrackComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const tracks = [
];
const TrackComponent = () => {
return (
<div className="trackComponent w-full h-fit md:h-[115vh] overflow-auto rounded-xl bg-white px-6 md:w-[32vw]">
<div className="trackComponent w-full h-full overflow-auto rounded-xl bg-white px-6 md:w-[32vw]">
<div className="pt-3 font-semibold text-[#45464E]">Track Details</div>
<div className="trackComponent -z-10 my-6 flex w-full flex-row items-center gap-6 overflow-auto md:flex-col">
{tracks.map((item, index) => (
Expand Down

0 comments on commit 25739fb

Please sign in to comment.