2020-08-11 18:07:47 +02:00
|
|
|
@import 'account-details-modal/index';
|
|
|
|
@import 'account-modal-container/index';
|
2019-03-22 00:03:30 +01:00
|
|
|
@import 'cancel-transaction/index';
|
|
|
|
@import 'confirm-remove-account/index';
|
2020-08-07 20:57:33 +02:00
|
|
|
@import 'deposit-ether-modal/index';
|
2020-08-12 17:49:45 +02:00
|
|
|
@import 'edit-approval-permission/index';
|
2020-08-11 18:07:47 +02:00
|
|
|
@import 'export-private-key-modal/index';
|
2020-08-07 21:31:02 +02:00
|
|
|
@import 'hide-token-confirmation-modal/index';
|
2020-08-12 17:49:45 +02:00
|
|
|
@import 'metametrics-opt-in-modal/index';
|
|
|
|
@import 'new-account-modal/index';
|
2019-03-22 00:03:30 +01:00
|
|
|
@import 'qr-scanner/index';
|
|
|
|
@import 'transaction-confirmed/index';
|
2021-04-17 00:00:18 +02:00
|
|
|
@import 'customize-nonce/index';
|
2022-01-19 19:42:41 +01:00
|
|
|
@import 'convert-token-to-nft-modal/index';
|
2020-08-12 17:49:45 +02:00
|
|
|
|
|
|
|
.modal {
|
|
|
|
z-index: 1050;
|
|
|
|
position: fixed;
|
|
|
|
width: 500px;
|
|
|
|
transform: translate3d(-50%, -50%, 0);
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
margin: 0;
|
2022-03-21 14:39:28 +01:00
|
|
|
background-color: var(--color-background-default);
|
2020-08-12 17:49:45 +02:00
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1040;
|
2022-03-21 14:39:28 +01:00
|
|
|
background-color: var(--color-overlay-alterantive);
|
2020-08-12 17:49:45 +02:00
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
}
|