Commit 5f1625f5 authored by pp-hh-ii-ll's avatar pp-hh-ii-ll Committed by GitHub

fix: update outline button to use non-deprecated colors (#5657)

Update outline button to use non-deprecated colors

Quick fix for about page – full refactor to come later
parent c1e6dd73
...@@ -153,12 +153,12 @@ export const ButtonSecondary = styled(BaseButton)` ...@@ -153,12 +153,12 @@ export const ButtonSecondary = styled(BaseButton)`
export const ButtonOutlined = styled(BaseButton)` export const ButtonOutlined = styled(BaseButton)`
border: 1px solid ${({ theme }) => theme.backgroundOutline}; border: 1px solid ${({ theme }) => theme.backgroundOutline};
background-color: transparent; background-color: transparent;
color: ${({ theme }) => theme.deprecated_text1}; color: ${({ theme }) => theme.textPrimary};
&:focus { &:focus {
box-shadow: 0 0 0 1px ${({ theme }) => theme.deprecated_bg4}; box-shadow: 0 0 0 1px ${({ theme }) => theme.deprecated_bg4};
} }
&:hover { &:hover {
box-shadow: 0 0 0 1px ${({ theme }) => theme.deprecated_bg4}; box-shadow: 0 0 0 1px ${({ theme }) => theme.textTertiary};
} }
&:active { &:active {
box-shadow: 0 0 0 1px ${({ theme }) => theme.deprecated_bg4}; box-shadow: 0 0 0 1px ${({ theme }) => theme.deprecated_bg4};
......
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