From 7cbbd117bac760f3127a76b7a01154d6a553c181 Mon Sep 17 00:00:00 2001 From: Bombamuerta Date: Wed, 17 Jun 2020 12:02:05 +0300 Subject: [PATCH] style(#ott-36): cursor pointers added --- src/features/Common/Button/styled.tsx | 1 + src/features/Common/Checkbox/styled.tsx | 1 + src/features/Common/Radio/styled.tsx | 1 + 3 files changed, 3 insertions(+) diff --git a/src/features/Common/Button/styled.tsx b/src/features/Common/Button/styled.tsx index 04a2c45a..b3c9d504 100644 --- a/src/features/Common/Button/styled.tsx +++ b/src/features/Common/Button/styled.tsx @@ -31,6 +31,7 @@ export const solidButtonStyles = css` padding-bottom: 13px; color: #FFFFFF; font-weight: bold; + cursor: pointer; border-color: transparent; background: ${({ theme: { colors } }) => colors.primary}; ` diff --git a/src/features/Common/Checkbox/styled.tsx b/src/features/Common/Checkbox/styled.tsx index 4c459eb5..29b41c8c 100644 --- a/src/features/Common/Checkbox/styled.tsx +++ b/src/features/Common/Checkbox/styled.tsx @@ -31,6 +31,7 @@ export const Input = styled.input` background-repeat: no-repeat; background-position: center center; background-image: url(/images/checkboxUnchecked.svg); + cursor: pointer; } &:checked+${Label}::before { diff --git a/src/features/Common/Radio/styled.tsx b/src/features/Common/Radio/styled.tsx index 9a98a8e6..eae7aa32 100644 --- a/src/features/Common/Radio/styled.tsx +++ b/src/features/Common/Radio/styled.tsx @@ -32,6 +32,7 @@ export const Input = styled.input` background-repeat: no-repeat; background-position: center center; background-image: url(/images/radioUnchecked.svg); + cursor: pointer; } &:checked+${Label}::before {