Skip to content

Commit 4719c93

Browse files
committed
Reduce subtlety of button hover styles
1 parent c032dc4 commit 4719c93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/common/inputs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ export const interactiveMouseoverStyles = css`
99
&:not([disabled]) {
1010
cursor: pointer;
1111
&:hover {
12-
background-image: linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
12+
background-image: linear-gradient(transparent, rgba(0,0,0,.1) 40%, rgba(0,0,0,.2));
1313
}
1414
1515
&:active {
16-
background-image: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.05) 40%, transparent);
16+
background-image: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.1) 40%, transparent);
1717
}
1818
1919
&:focus {

0 commit comments

Comments
 (0)