Skip to content

Commit

Permalink
style: cta button (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Dec 26, 2023
1 parent 254ce6f commit b30552f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/pages/Landing/__snapshots__/index.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1455,15 +1455,15 @@ exports[`disable nft on landing page does not render nft information and card 1`
}
.c61 {
background: linear-gradient(93.06deg,#ff00c7 2.66%,#ff9ffb 98.99%);
background: linear-gradient(93.06deg,#14a8ff 2.66%,#94d6fc 98.99%);
border: none;
color: #FFFFFF;
-webkit-transition: all 250ms ease;
transition: all 250ms ease;
}
.c61:hover {
box-shadow: 0px 0px 16px 0px #ff00c7;
box-shadow: 0px 0px 16px 0px #14a8ff;
}
.c62 {
Expand Down Expand Up @@ -4099,15 +4099,15 @@ exports[`disable nft on landing page renders nft information and card 1`] = `
}
.c61 {
background: linear-gradient(93.06deg,#ff00c7 2.66%,#ff9ffb 98.99%);
background: linear-gradient(93.06deg,#14a8ff 2.66%,#94d6fc 98.99%);
border: none;
color: #FFFFFF;
-webkit-transition: all 250ms ease;
transition: all 250ms ease;
}
.c61:hover {
box-shadow: 0px 0px 16px 0px #ff00c7;
box-shadow: 0px 0px 16px 0px #14a8ff;
}
.c62 {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,13 @@ const LandingButton = styled(BaseButton)`
`

const ButtonCTA = styled(LandingButton)`
background: linear-gradient(93.06deg, #ff00c7 2.66%, #ff9ffb 98.99%);
background: linear-gradient(93.06deg, #14a8ff 2.66%, #94d6fc 98.99%);
border: none;
color: ${({ theme }) => theme.white};
transition: ${({ theme }) => `all ${theme.transition.duration.medium} ${theme.transition.timing.ease}`};
&:hover {
box-shadow: 0px 0px 16px 0px #ff00c7;
box-shadow: 0px 0px 16px 0px #14a8ff;
}
`

Expand Down

0 comments on commit b30552f

Please # to comment.