mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
1b563188bf
Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com> Co-authored-by: Brad Decker <git@braddecker.dev> Co-authored-by: Brad Decker <bhdecker84@gmail.com>
46 lines
1.1 KiB
SCSS
46 lines
1.1 KiB
SCSS
@import 'account-details-modal/index';
|
|
@import 'account-modal-container/index';
|
|
@import 'cancel-transaction/index';
|
|
@import 'confirm-remove-account/index';
|
|
@import 'edit-approval-permission/index';
|
|
@import 'export-private-key-modal/index';
|
|
@import 'hide-token-confirmation-modal/index';
|
|
@import 'metametrics-opt-in-modal/index';
|
|
@import 'new-account-modal/index';
|
|
@import 'qr-scanner/index';
|
|
@import 'transaction-confirmed/index';
|
|
@import 'customize-nonce/index';
|
|
@import 'convert-token-to-nft-modal/index';
|
|
@import 'contract-details-modal/index';
|
|
|
|
.modal {
|
|
z-index: 1050;
|
|
position: fixed;
|
|
width: 500px;
|
|
transform: translate3d(-50%, -50%, 0);
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
&__content {
|
|
margin: 0;
|
|
background-color: var(--color-background-default);
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
&__backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1040;
|
|
background-color: var(--color-overlay-alterantive);
|
|
animation-fill-mode: forwards;
|
|
animation-duration: 0.3s;
|
|
}
|
|
|
|
& > div:focus {
|
|
outline: none !important;
|
|
}
|
|
}
|