Skip to content

Commit

Permalink
fix: 🔧 personal details screen overlapping (#12718)
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan-nurzi-deriv committed Jan 5, 2024
1 parent 0124857 commit 69134ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
padding: 2.4rem;

@include mobile {
width: 100%;
min-width: 100%;
min-height: 100%;
}

&__header {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { ModalStepWrapper, WalletButton, WalletButtonGroup } from '../../../../c
import { FlowProvider, TFlowProviderContext } from '../../../../components/FlowProvider';
import { Loader } from '../../../../components/Loader';
import { useModal } from '../../../../components/ModalProvider';
import useDevice from '../../../../hooks/useDevice';
import { THooks } from '../../../../types';
import {
ManualDocumentUpload,
Expand Down Expand Up @@ -81,6 +82,7 @@ const Verification: FC<TVerificationProps> = ({ selectedJurisdiction }) => {
const { data: settings, update: updateSettings } = useSettings();
const { submitIDVDocuments } = useIdentityDocumentVerificationAdd();
const { getModalState, hide, show } = useModal();
const { isMobile } = useDevice();

const selectedMarketType = getModalState('marketType') ?? 'all';
const platform = getModalState('platform') ?? PlatformDetails.mt5.platform;
Expand Down Expand Up @@ -280,6 +282,7 @@ const Verification: FC<TVerificationProps> = ({ selectedJurisdiction }) => {
: () => (
<WalletButton
disabled={isNextDisabled(context)}
isFullWidth={isMobile}
isLoading={isNextLoading(context)}
onClick={() => nextFlowHandler(context)}
size='lg'
Expand Down

1 comment on commit 69134ea

@vercel
Copy link

@vercel vercel bot commented on 69134ea Jan 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

deriv-app – ./

deriv-app.vercel.app
binary.sx
deriv-app-git-master.binary.sx
deriv-app.binary.sx

Please sign in to comment.