style(#ott-36): cursor pointers added

keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Bombamuerta 6 years ago
parent a4efad6dce
commit 7cbbd117ba
  1. 1
      src/features/Common/Button/styled.tsx
  2. 1
      src/features/Common/Checkbox/styled.tsx
  3. 1
      src/features/Common/Radio/styled.tsx

@ -31,6 +31,7 @@ export const solidButtonStyles = css`
padding-bottom: 13px; padding-bottom: 13px;
color: #FFFFFF; color: #FFFFFF;
font-weight: bold; font-weight: bold;
cursor: pointer;
border-color: transparent; border-color: transparent;
background: ${({ theme: { colors } }) => colors.primary}; background: ${({ theme: { colors } }) => colors.primary};
` `

@ -31,6 +31,7 @@ export const Input = styled.input`
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center center; background-position: center center;
background-image: url(/images/checkboxUnchecked.svg); background-image: url(/images/checkboxUnchecked.svg);
cursor: pointer;
} }
&:checked+${Label}::before { &:checked+${Label}::before {

@ -32,6 +32,7 @@ export const Input = styled.input`
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center center; background-position: center center;
background-image: url(/images/radioUnchecked.svg); background-image: url(/images/radioUnchecked.svg);
cursor: pointer;
} }
&:checked+${Label}::before { &:checked+${Label}::before {

Loading…
Cancel
Save