diff --git a/src/features/Common/Button/styled.tsx b/src/features/Common/Button/styled.tsx index 04a2c45a..5669f9f1 100644 --- a/src/features/Common/Button/styled.tsx +++ b/src/features/Common/Button/styled.tsx @@ -27,10 +27,9 @@ export const outlineButtonStyles = css` export const solidButtonStyles = css` ${baseButtonStyles} - padding-top: 18.5px; - padding-bottom: 13px; - color: #FFFFFF; + color: #fff; 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 { diff --git a/src/features/Register/Steps/Card/index.tsx b/src/features/Register/Steps/Card/index.tsx index 4f6675a3..3da20959 100644 --- a/src/features/Register/Steps/Card/index.tsx +++ b/src/features/Register/Steps/Card/index.tsx @@ -13,8 +13,6 @@ import { Row, } from '../../styled' -const labelWidth = 116 - export const CardStep = () => (
Привязка карты @@ -23,7 +21,6 @@ export const CardStep = () => ( @@ -32,7 +29,6 @@ export const CardStep = () => ( label='Срок действия' wrapperWidth={280} inputWidth={85} - labelWidth={labelWidth} paddingX={21} />