Skip to content

Commit 70c39b9

Browse files
committed
add transform for projects
1 parent 9f03743 commit 70c39b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/portfolio/components/Projects/Project/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function Project({
3737
teams,
3838
}: ProjectProps) {
3939
return (
40-
<Card>
40+
<Card className="hover:scale-105 transition-transform">
4141
<CardHeader>
4242
<CardTitle>{name}</CardTitle>
4343
<CardDescription>

app/portfolio/components/Projects/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function Projects() {
55
return (
66
<section
77
id="projects"
8-
className="col-span-full grid grid-cols-1 md:grid-cols-2 p-4 gap-4 border-t border-fg/20"
8+
className="col-span-full grid grid-cols-1 lg:grid-cols-2 p-8 gap-8 border-t border-fg/20"
99
>
1010
<h2 className="col-span-full">Projects</h2>
1111
{projects.map((project) => (

0 commit comments

Comments
 (0)