remove a hover blue color

This commit is contained in:
Aykut Saraç 2022-02-19 12:03:08 +03:00
parent 85c8fd78d6
commit 3e5e2987f2
2 changed files with 4 additions and 5 deletions

View File

@ -52,6 +52,10 @@ const StyledElement = styled.div<{ disabled?: boolean }>`
cursor: pointer;
pointer-events: ${({ disabled }) => disabled && "none"};
&:hover {
filter: brightness(1.3);
}
a {
text-align: center;
width: 100%;

View File

@ -26,11 +26,6 @@ const GlobalStyle = createGlobalStyle`
a {
text-decoration: none;
color: unset;
&:hover {
transition: 0.2s;
color: ${({ theme }) => theme.BLURPLE};
}
}
button {