Skip to content

Commit

Permalink
refactor code
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangndm3139 committed Feb 20, 2024
1 parent f92d079 commit 8b0816b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ body {
background-size: cover;
background-repeat: no-repeat;
border: 1px solid #FD9552;
box-shadow: 0px 68px 160px 0px rgba(0, 0, 0, 0.45);
}

/* Ecosystem card */
Expand Down
2 changes: 1 addition & 1 deletion src/sections/ecosystem/components/Card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Card({ data }: CardProps) {
const { img, title, description, name, link } = data
return (
<div className={`ecosystem-card-${name} group relative bg-white hover:bg-black rounded-3xl border border-solid border-[rgba(254,119,108,0.16)] flex flex-col gap-8 lg:gap-0 lg:justify-between items-start p-8 hover:pb-10 max-w-[345px] h-[296px] card lg:p-14 lg:hover:pb-16 lg:max-w-[427px] lg:max-h-[481px] lg:h-[481px]`}>
<Link href={link} target="_blank">
<Link id={name} href={link} target="_blank">
<Image className="lg:w-8 lg:h-8 absolute right-[30px] top-[30px] hidden rotate-45 group-hover:block group-hover:rotate-0 transition delay-100 duration-500" src={ic_arrow_up_right} alt="ic_arrow"></Image>
</Link>
<Image className="lg:w-16 lg:h-16" src={img} alt={title}></Image>
Expand Down

0 comments on commit 8b0816b

Please sign in to comment.