Skip to content

Commit

Permalink
fix: 🐛 resolved issue with radio button (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
likhith-deriv committed May 24, 2023
1 parent 35cce4b commit 9ad0117
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
TLocationList,
} from '@deriv/shared';
import { splitValidationResultTypes } from '../real-account-signup/helpers/utils';
import classNames from 'classnames';

type TAddressDetails = {
states_list: TLocationList[];
Expand Down Expand Up @@ -199,7 +200,7 @@ const AddressDetails = ({
</Text>
</div>
)}
<div className='details-form__elements'>
<div className={classNames('details-form__elements', 'address-details-form ')}>
<InputField
name='address_line_1'
required={is_svg || is_appstore || is_mf}
Expand Down
10 changes: 9 additions & 1 deletion packages/core/src/sass/account-wizard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -820,9 +820,17 @@
}
}

.personal-details-form {
.personal-details-form,
.address-details-form {
width: 100%;
@include desktop {
padding: 0 16rem;
}
}

.personal-details-form {
.dc-radio-group__input {
display: unset;
appearance: unset;
}
}

0 comments on commit 9ad0117

Please sign in to comment.