mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Fix design inconsistencies in the connect flow (#19800)
This commit is contained in:
parent
994a71d30e
commit
c8f26d8c24
@ -11,7 +11,7 @@
|
|||||||
flex: 0;
|
flex: 0;
|
||||||
margin-top: 36px;
|
margin-top: 36px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-inline-start: 15px;
|
padding-inline-start: 16px;
|
||||||
padding-inline-end: 17px;
|
padding-inline-end: 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -25,7 +25,6 @@
|
|||||||
|
|
||||||
&__select-all {
|
&__select-all {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-inline-start: 16px;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { useI18nContext } from '../../../hooks/useI18nContext';
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
||||||
import Button from '../../../components/ui/button';
|
|
||||||
import PermissionsConnectHeader from '../../../components/app/permissions-connect-header';
|
import PermissionsConnectHeader from '../../../components/app/permissions-connect-header';
|
||||||
import PermissionsConnectFooter from '../../../components/app/permissions-connect-footer';
|
import PermissionsConnectFooter from '../../../components/app/permissions-connect-footer';
|
||||||
import AccountList from '../../../components/ui/account-list';
|
import AccountList from '../../../components/ui/account-list';
|
||||||
|
import { PageContainerFooter } from '../../../components/ui/page-container';
|
||||||
|
|
||||||
const ChooseAccount = ({
|
const ChooseAccount = ({
|
||||||
selectedAccountAddresses,
|
selectedAccountAddresses,
|
||||||
@ -75,21 +75,14 @@ const ChooseAccount = ({
|
|||||||
</div>
|
</div>
|
||||||
<div className="permissions-connect-choose-account__footer-container">
|
<div className="permissions-connect-choose-account__footer-container">
|
||||||
<PermissionsConnectFooter />
|
<PermissionsConnectFooter />
|
||||||
<div className="permissions-connect-choose-account__bottom-buttons">
|
<PageContainerFooter
|
||||||
<Button
|
cancelButtonType="default"
|
||||||
onClick={() => cancelPermissionsRequest(permissionsRequestId)}
|
onCancel={() => cancelPermissionsRequest(permissionsRequestId)}
|
||||||
type="secondary"
|
cancelText={t('cancel')}
|
||||||
>
|
onSubmit={() => selectAccounts(selectedAccounts)}
|
||||||
{t('cancel')}
|
submitText={t('next')}
|
||||||
</Button>
|
disabled={selectedAccounts.size === 0}
|
||||||
<Button
|
/>
|
||||||
onClick={() => selectAccounts(selectedAccounts)}
|
|
||||||
type="primary"
|
|
||||||
disabled={selectedAccounts.size === 0}
|
|
||||||
>
|
|
||||||
{t('next')}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -29,31 +29,9 @@
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
&__bottom-buttons {
|
.page-container__footer {
|
||||||
display: flex;
|
margin-top: 12px;
|
||||||
justify-content: space-between;
|
|
||||||
width: 100%;
|
|
||||||
padding-top: 16px;
|
|
||||||
padding-bottom: 16px;
|
|
||||||
margin-top: 12px;
|
|
||||||
border-top: 1px solid var(--color-border-muted);
|
|
||||||
|
|
||||||
@include screen-sm-min {
|
|
||||||
border-top: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
width: 124px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary {
|
|
||||||
margin-left: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
margin-right: 16px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -279,7 +279,7 @@ export default class PermissionConnect extends Component {
|
|||||||
onClick={() => this.goBack()}
|
onClick={() => this.goBack()}
|
||||||
>
|
>
|
||||||
<Icon
|
<Icon
|
||||||
name={IconName.ArrowRight}
|
name={IconName.ArrowLeft}
|
||||||
marginInlineEnd={1}
|
marginInlineEnd={1}
|
||||||
size={IconSize.Xs}
|
size={IconSize.Xs}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user