Skip to content

Commit

Permalink
fix: Fixed responsive design in ProjectCard component
Browse files Browse the repository at this point in the history
  • Loading branch information
LakioLive committed Jan 31, 2025
1 parent 3677077 commit 951ab0c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/ui/projectCard/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ export default function ProjectCard({
/>
</div>
<div className="grid gap-1">
<h6 className="text-4xl font-semibold">{name}</h6>
<p className="text-xl text-gray-500 dark:text-gray-400">
<h6 className="xl:text-4xl md:text-2xl text-xl font-semibold">
{name}
</h6>
<p className="xl:text-xl md:text-lg text-base text-gray-500 dark:text-gray-400">
{description}
</p>
</div>
Expand Down

0 comments on commit 951ab0c

Please sign in to comment.