diff --git a/web/src/components/DisputeView/DisputeCardView.tsx b/web/src/components/DisputeView/DisputeCardView.tsx index 97360cc72..602c98f06 100644 --- a/web/src/components/DisputeView/DisputeCardView.tsx +++ b/web/src/components/DisputeView/DisputeCardView.tsx @@ -21,10 +21,6 @@ const StyledCard = styled(Card)` height: 100%; max-height: 335px; min-height: 290px; - - &:hover { - background-color: ${({ theme }) => theme.lightGrey}BB; - } `; const CardContainer = styled.div` @@ -62,7 +58,7 @@ interface IDisputeCardView { const DisputeCardView: React.FC = ({ isLoading, ...props }) => { return ( - + {isLoading ? : } diff --git a/web/src/components/DisputeView/DisputeListView.tsx b/web/src/components/DisputeView/DisputeListView.tsx index ad22d7cb3..d0c1c967a 100644 --- a/web/src/components/DisputeView/DisputeListView.tsx +++ b/web/src/components/DisputeView/DisputeListView.tsx @@ -20,10 +20,6 @@ const StyledListItem = styled(Card)` flex-grow: 1; width: 100%; height: 82px; - - &:hover { - background-color: ${({ theme }) => theme.lightGrey}BB; - } `; const ListContainer = styled.div` @@ -65,7 +61,7 @@ const DisputeListView: React.FC = (props) => { const { isDisconnected } = useAccount(); return ( - + diff --git a/web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx b/web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx index 5c4ad0998..0ac19f61d 100644 --- a/web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx +++ b/web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx @@ -18,9 +18,7 @@ const StyledCard = styled(Card)` padding: 24px; &:hover { - background-color: ${({ theme }) => theme.lightGrey}BB; cursor: pointer; - box-shadow: none; } `;