Use the background styles instead of box shadows on new cards

This commit is contained in:
Jackson Harper 2022-04-06 13:51:52 -07:00
parent 5711df8459
commit 2ef5a59d4c

View file

@ -585,14 +585,12 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element {
},
'&:focus': {
'> div': {
boxShadow:
layout === 'LIST_LAYOUT' ? 'none' : '$cardItemShadow',
bg: '$grayBgActive',
},
},
'&:hover': {
'> div': {
boxShadow:
layout === 'LIST_LAYOUT' ? 'none' : '$cardItemShadow',
bg: '$grayBgActive',
},
},
}}