Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed May 2, 2024
1 parent 0a8a793 commit 0e3d49a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/react/src/components/view-control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export const NavigationButtonContainer = styled.div`
export const NavigationButton = styled.div`
color: #848484;
cursor: pointer;
left: ${(props) => (props as any).left};
left: ${(props: any) => props.left};
position: absolute;
top: ${(props) => (props as any).top};
transform: rotate(${(props) => (props as any).rotate || 0}deg);
top: ${(props: any) => props.top};
transform: rotate(${(props: any) => props.rotate || 0}deg);
&:hover,
&:active {
Expand Down

0 comments on commit 0e3d49a

Please sign in to comment.