diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:39:17 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:39:17 -0700 |
commit | 7207da47c790aab81f59e777b9d02769b46fb7f4 (patch) | |
tree | 85873f54f238cd9d9be7f64f51484c52a22ef9e1 /extension/react-app/src/components/ContinueButton.tsx | |
parent | 1e00942edec9c9aa4c69f2a8be7e43f06df684df (diff) | |
download | sncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.tar.gz sncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.tar.bz2 sncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.zip |
details
Diffstat (limited to 'extension/react-app/src/components/ContinueButton.tsx')
-rw-r--r-- | extension/react-app/src/components/ContinueButton.tsx | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx index 462f2b46..72f6dcd2 100644 --- a/extension/react-app/src/components/ContinueButton.tsx +++ b/extension/react-app/src/components/ContinueButton.tsx @@ -10,20 +10,12 @@ let StyledButton = styled(Button)` display: grid; grid-template-columns: 30px 1fr; align-items: center; - background: linear-gradient( - 95.23deg, - #be1a55 14.44%, - rgba(203, 27, 90, 0.4) 82.21% - ); + background: #be1b55; &:hover { transition-delay: 0.5s; transition-property: "background"; - background: linear-gradient( - 45deg, - #be1a55 14.44%, - rgba(203, 27, 90, 0.4) 82.21% - ); + opacity: 0.8; } `; |