File tree 3 files changed +2
-12
lines changed
pages/Cases/CaseDetails/Appeal
3 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,6 @@ const StyledCard = styled(Card)`
21
21
height: 100%;
22
22
max-height: 335px;
23
23
min-height: 290px;
24
-
25
- &:hover {
26
- background-color: ${ ( { theme } ) => theme . lightGrey } BB;
27
- }
28
24
` ;
29
25
30
26
const CardContainer = styled . div `
@@ -62,7 +58,7 @@ interface IDisputeCardView {
62
58
const DisputeCardView : React . FC < IDisputeCardView > = ( { isLoading, ...props } ) => {
63
59
return (
64
60
< Link to = { `/cases/${ props ?. disputeID ?. toString ( ) } ` } >
65
- < StyledCard >
61
+ < StyledCard hover >
66
62
< PeriodBanner id = { parseInt ( props ?. disputeID ) } period = { props ?. period } />
67
63
< CardContainer >
68
64
{ isLoading ? < StyledCaseCardTitleSkeleton /> : < TruncatedTitle text = { props ?. title } maxLength = { 100 } /> }
Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ const StyledListItem = styled(Card)`
20
20
flex-grow: 1;
21
21
width: 100%;
22
22
height: 82px;
23
-
24
- &:hover {
25
- background-color: ${ ( { theme } ) => theme . lightGrey } BB;
26
- }
27
23
` ;
28
24
29
25
const ListContainer = styled . div `
@@ -65,7 +61,7 @@ const DisputeListView: React.FC<IDisputeListView> = (props) => {
65
61
const { isDisconnected } = useAccount ( ) ;
66
62
return (
67
63
< Link to = { `/cases/${ props ?. disputeID ?. toString ( ) } ` } >
68
- < StyledListItem >
64
+ < StyledListItem hover >
69
65
< PeriodBanner isCard = { false } id = { parseInt ( props ?. disputeID ?? "0" ) } period = { props . period } />
70
66
< ListContainer >
71
67
< TitleContainer isLabel = { ! isDisconnected } >
Original file line number Diff line number Diff line change @@ -18,9 +18,7 @@ const StyledCard = styled(Card)`
18
18
padding: 24px;
19
19
20
20
&:hover {
21
- background-color: ${ ( { theme } ) => theme . lightGrey } BB;
22
21
cursor: pointer;
23
- box-shadow: none;
24
22
}
25
23
` ;
26
24
You can’t perform that action at this time.
0 commit comments