We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 985e6eb commit 7465db0Copy full SHA for 7465db0
web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx
@@ -1,6 +1,8 @@
1
import React, { useMemo } from "react";
2
import styled from "styled-components";
3
4
+import { hoverShortTransitionTiming } from "styles/commonStyles";
5
+
6
import { useMeasure } from "react-use";
7
import { formatEther } from "viem";
8
@@ -11,10 +13,14 @@ import Gavel from "svgs/icons/gavel.svg";
11
13
import { isUndefined } from "utils/index";
12
14
15
const StyledCard = styled(Card)`
16
+ ${hoverShortTransitionTiming}
17
width: 100%;
18
padding: 24px;
19
20
&:hover {
21
+ background-color: ${({ theme }) => theme.lightGrey}BB;
22
cursor: pointer;
23
+ box-shadow: none;
24
}
25
`;
26
0 commit comments