style: add transition to button and move gradient up (#5660)
Add transition to button and move gradient up Moves gradient up to obscure more of the swap box
This commit is contained in:
parent
e22554b4c4
commit
3613dc2d4a
@ -31,8 +31,8 @@ const Gradient = styled.div<{ isDarkMode: boolean }>`
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
background: ${({ isDarkMode }) =>
|
background: ${({ isDarkMode }) =>
|
||||||
isDarkMode
|
isDarkMode
|
||||||
? 'linear-gradient(rgba(8, 10, 24, 0) 9.84%, rgb(8 10 24 / 86%) 35.35%)'
|
? 'linear-gradient(rgba(8, 10, 24, 0) 0%, rgb(8 10 24 / 100%) 45%)'
|
||||||
: 'linear-gradient(rgba(8, 10, 24, 0) 9.84%, rgb(255 255 255 / 86%) 35.35%)'};
|
: 'linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255 255 255 /100%) 45%)'};
|
||||||
z-index: ${Z_INDEX.dropdown};
|
z-index: ${Z_INDEX.dropdown};
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
`
|
`
|
||||||
@ -132,6 +132,7 @@ const ButtonCTASecondary = styled(LandingButton)`
|
|||||||
background: none;
|
background: none;
|
||||||
border: ${({ theme }) => `1px solid ${theme.textPrimary}`};
|
border: ${({ theme }) => `1px solid ${theme.textPrimary}`};
|
||||||
color: ${({ theme }) => theme.textPrimary};
|
color: ${({ theme }) => theme.textPrimary};
|
||||||
|
transition: ${({ theme }) => `all ${theme.transition.duration.medium} ${theme.transition.timing.ease}`};
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border: 1px solid rgba(255, 0, 199, 1);
|
border: 1px solid rgba(255, 0, 199, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user