Use different color for row highlight style

This commit is contained in:
David Corbitt
2023-08-16 22:46:22 -07:00
parent 1596b15727
commit 56a96a7db6

View File

@@ -15,7 +15,7 @@ const ScenarioRow = (props: {
}) => { }) => {
const [isHovered, setIsHovered] = useState(false); const [isHovered, setIsHovered] = useState(false);
const highlightStyle = { backgroundColor: "gray.50" }; const highlightStyle = { backgroundColor: "blackAlpha.50" };
return ( return (
<> <>