Skip to content

Commit cec4117

Browse files
author
kerbethecoder
committed
fix on cards
1 parent 4ca5def commit cec4117

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/components/projects/Card.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Card = ({
1616
})
1717

1818
return (
19-
<div className="hiddenElem card rounded mt-5 py-3 px-3 w-10/12 md:w-7/12 lg:w-5/12">
19+
<div className="hiddenElem card rounded mt-5 py-3 px-3 w-10/12 md:w-7/12 lg:w-5/12 transition duration-300 ease-in-out hover:scale-105">
2020
<div className="h-2/5 hiddenElem flex justify-between">
2121
<div className="h-28 w-6/12">
2222
<img

src/components/projects/Projects.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Projects = () => {
4545
and color combinations, and other things that is essential on
4646
my web development journey.`,
4747
github: "https://github.com/kerbethecoder/the-notepad",
48-
siteUrl: "https://the-notepad-by-kerbe.vercel.app/developer",
48+
siteUrl: "https://the-notepad-by-kerbe.vercel.app/",
4949
frameworks: {
5050
one: "NextJS",
5151
two: "TailwindCSS",

src/styles/styles.css

-2
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,11 @@ button ion-icon:hover {
140140

141141
.card {
142142
border: 2px solid rgba(26, 26, 26, 0.25);
143-
transition: transform 0.2s ease-in-out;
144143
@apply lg:h-80;
145144
}
146145

147146
.card:hover {
148147
box-shadow: 0px 0px 20px 0px rgba(26, 26, 26, 0.25);
149-
transform: scale(1.02);
150148
}
151149

152150
.cardIcon ion-icon:hover {

0 commit comments

Comments
 (0)