Skip to content

Commit

Permalink
Update ProjectComp.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Adebisi1234 committed Jun 22, 2024
1 parent c2ecb17 commit 196e2d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/projects/ProjectComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default function ProjectComp(prop: ProjectType) {
prop.id % 2 !== 0 ? "lg:order-1" : ""
}`}
>
<div className="flex justify-between w-[600px] my-3 max-w-full">
<div className="flex justify-between w-[600px] my-3 max-w-full h-fit">
<div className="flex items-center justify-center gap-1">
{showcase.length > 1 ? (
<>
Expand Down Expand Up @@ -145,7 +145,7 @@ export default function ProjectComp(prop: ProjectType) {
</div>

<div
className={`bg-darkBg2 h-[400px] max-h-fit w-[600px] max-w-full ${
className={`bg-darkBg2 h-fit max-h-[400px] w-[600px] max-w-full ${
loading && "animate-pulse"
}`}
onMouseOver={() => setLoading(false)}
Expand Down

0 comments on commit 196e2d0

Please sign in to comment.