Skip to content

Commit

Permalink
feat: make portifolio/ProjectCard responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Dec 23, 2022
1 parent 942293a commit 448e8b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/portifolio/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export function ProjectCard({ data }: Props) {
)}
<div className="p-5 flex-1 flex flex-col">
<div>
<div className="flex items-center gap-5 text-2xl text-neutral-50 mb-4">
<div className="flex flex-col md:flex-row items-center gap-5 text-2xl text-neutral-50 mb-10 md:mb-4">
<h2 className="font-bold">{data.title}</h2>
<span>
<span className="hidden md:inline">
<BsDot />
</span>
<span className="flex items-center gap-3">
Expand All @@ -39,8 +39,8 @@ export function ProjectCard({ data }: Props) {
})}
</span>
</div>
<p>{data.description}</p>
<div className="mt-4 flex flex-wrap items-center gap-2">
<p className="text-justify md:text-left">{data.description}</p>
<div className="mt-10 md:mt-4 flex flex-wrap items-center justify-center md:justify-start gap-2">
{data.tags.map(tag => (
<span
key={tag}
Expand Down

0 comments on commit 448e8b1

Please sign in to comment.