Skip to content

Commit 8a11dac

Browse files
committed
style: padding issue with modal component
1 parent 30d6608 commit 8a11dac

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

packages/account/src/Configs/get-mt5-status-badge-config.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const getMT5StatusBadgeConfig = (mt5_account_status: TMT5AccountStatus) => {
4343
};
4444
case TRADING_PLATFORM_STATUS.UNAVAILABLE:
4545
return {
46-
text: <Localize i18n_default_text='<0>Temporarily Unavailable</0>' components={[BadgeTextComponent]} />,
46+
text: <Localize i18n_default_text='<0>Temporarily unavailable</0>' components={[BadgeTextComponent]} />,
4747
icon: 'IcAlertWarning',
4848
};
4949
default:

packages/account/src/Configs/get-status-badge-config.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const getStatusBadgeConfig = (account_status: TAccountBadgeStatus) => {
3131
};
3232
case TRADING_PLATFORM_STATUS.UNAVAILABLE:
3333
return {
34-
text: <Localize i18n_default_text='<0>Temporarily Unavailable</0>' components={[BadgeTextComponent]} />,
34+
text: <Localize i18n_default_text='<0>Temporarily unavailable</0>' components={[BadgeTextComponent]} />,
3535
icon: 'IcAlertWarning',
3636
};
3737
default:

packages/appstore/src/components/cfds-listing/cfds-listing.scss

+3
Original file line numberDiff line numberDiff line change
@@ -1773,6 +1773,9 @@
17731773
flex-direction: column;
17741774
justify-content: flex-start;
17751775
align-items: flex-start;
1776+
@include mobile-or-tablet-screen {
1777+
padding: 0.8rem 1.6rem;
1778+
}
17761779
}
17771780
.dc-input {
17781781
&__label {

packages/cashier/src/pages/account-transfer/account-transfer-form/account-transfer-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const AccountOption = ({
8080
<StatusBadge
8181
account_status={TRADING_PLATFORM_STATUS.UNAVAILABLE}
8282
icon='IcAlertWarning'
83-
text='Temporarily Unavailable'
83+
text='Temporarily unavailable'
8484
/>
8585
);
8686
}

packages/cfd/src/Containers/cfd-server-maintenance-modal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const CFDServerMaintenanceModal = observer(() => {
1919
has_close_icon
2020
width={isDesktop() ? '440px' : '328px'}
2121
>
22-
<Modal.Body>
22+
<Modal.Body className='dc-modal__container_cfd-password-modal__body'>
2323
<Localize
2424
i18n_default_text='We’re currently performing server maintenance. Service may be affected.'
2525
components={[<strong key={0} />]}

packages/cfd/src/Containers/mt5-account-unavailable-modal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const MT5AccountUnavailableModal = observer(() => {
2020
has_close_icon
2121
width={isDesktop ? '440px' : '328px'}
2222
>
23-
<Modal.Body>
23+
<Modal.Body className='dc-modal__container_cfd-password-modal__body'>
2424
<Localize i18n_default_text='Check back in a few minutes by refreshing the page.' />
2525
</Modal.Body>
2626
<Modal.Footer>

packages/wallets/src/features/cfd/components/PlatformStatusBadge/PlatformStatusBadge.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const getBadgeText = (status: TProps['status'], localize: (key: string) => strin
1717
return localize('Server maintenance');
1818
case TRADING_PLATFORM_STATUS.UNAVAILABLE:
1919
case MT5_ACCOUNT_STATUS.UNAVAILABLE:
20-
return localize('Temporarily Unavailable');
20+
return localize('Temporarily unavailable');
2121
default:
2222
return '';
2323
}

0 commit comments

Comments
 (0)