File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ const ExperienceWrapper = ({
3434 className = { cn ( 'p-4 mb-12 group' , inView && 'bg-background shadow-border' ) }
3535 >
3636 < div className = "flex gap-4 mb-4" >
37- < Image src = { imageSrc } alt = { title } className = "w-16 h-16 rounded" />
37+ < Image
38+ src = { imageSrc }
39+ alt = { title }
40+ className = "w-16 h-16 rounded group-hover:shadow-border"
41+ />
3842 < div >
3943 < Link
4044 href = { link }
Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ const Project = ({
4848 inView && 'bg-background shadow-border'
4949 ) }
5050 >
51- < div className = "flex w-full gap-6 max-md:flex-col group" >
51+ < div className = "flex gap-6 w-full max-md:flex-col group" >
5252 < div
5353 onClick = { ( ) => {
5454 setOpen ( true ) ;
5555 } }
56- className = "h-full overflow-hidden rounded-lg cursor-pointer md:w-2/5 group-hover:shadow-border"
56+ className = "overflow-hidden h-full rounded-lg cursor-pointer md:w-2/5 group-hover:shadow-border"
5757 >
5858 < Image
5959 src = { imageSrc }
@@ -85,7 +85,7 @@ const Project = ({
8585 { accomplishments . map ( ( accomplishment , index ) => (
8686 < li
8787 key = { index }
88- className = "px-2 py-1 mb-1 border-b rounded-lg border-secondary"
88+ className = "px-2 py-1 mb-1 rounded-lg border-b border-secondary"
8989 >
9090 { accomplishment }
9191 </ li >
Original file line number Diff line number Diff line change 4747 transition : transform 0.5s ease-out;
4848}
4949
50- .underline-animation : hover : after {
50+ .group : hover . underline-animation : after {
5151 transform : scaleX (1 );
5252 transform-origin : bottom left;
5353}
You can’t perform that action at this time.
0 commit comments