Commit 52d40949 authored by Moody Salem's avatar Moody Salem

Missed a spot

parent 685bb174
...@@ -68,8 +68,12 @@ const TransactionState = styled.div<{ pending: boolean; success?: boolean }>` ...@@ -68,8 +68,12 @@ const TransactionState = styled.div<{ pending: boolean; success?: boolean }>`
} }
:hover { :hover {
border-color: ${({ pending, theme }) => border-color: ${({ pending, success, theme }) =>
pending ? transparentize(0, theme.primary1) : transparentize(0, theme.green1)}; pending
? transparentize(0, theme.primary1)
: success
? transparentize(0, theme.green1)
: transparentize(0, theme.red1)};
} }
` `
const ButtonWrapper = styled.div<{ pending: boolean; success?: boolean }>` const ButtonWrapper = styled.div<{ pending: boolean; success?: boolean }>`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment