fix collection navigation button style

This commit is contained in:
Abhinav 2022-05-13 12:26:21 +05:30
parent 463ce984bf
commit b4c2799405

View file

@ -18,7 +18,6 @@ const Wrapper = styled.button<{ direction: SCROLL_DIRECTION }>`
border-radius: 50%;
background-color: ${({ theme }) => theme.palette.background.paper};
color: ${({ theme }) => theme.palette.text.primary};
${(props) =>
@ -42,10 +41,6 @@ const Wrapper = styled.button<{ direction: SCROLL_DIRECTION }>`
height: 30px;
width: 30px;
}
&:hover {
color: #fff;
}
`;
const NavigationButton = ({ scrollDirection, ...rest }) => (