mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
e3380ba3ae
* UX: Icon: WIP: Remove fa-exclamation-triangle usages * Swap the rest of the icons * Fix color import * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/app/add-network/add-network.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/ui/review-spending-cap/review-spending-cap.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Fix lint * Fix alignment and sizes * Use IconColor * Update ui/components/app/custom-spending-cap/custom-spending-cap-tooltip.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/confirmation-warning-modal/confirmation-warning-modal.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/components/app/signature-request-original/signature-request-original-warning/signature-request-original-warning.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/components/ui/review-spending-cap/review-spending-cap.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Fix imports * Use IconColor --------- Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Danica Shen <zhaodanica@gmail.com>
75 lines
1.0 KiB
SCSS
75 lines
1.0 KiB
SCSS
.secure-your-wallet {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
&__video {
|
|
max-width: 100%;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
&__actions {
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
@include screen-sm-min {
|
|
flex-direction: row;
|
|
}
|
|
|
|
button {
|
|
margin-bottom: 16px;
|
|
|
|
@include screen-sm-min {
|
|
+ button {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&__list {
|
|
list-style: disc inside;
|
|
|
|
li {
|
|
@include H4;
|
|
}
|
|
}
|
|
|
|
&__highlighted {
|
|
background-color: var(--color-primary-muted);
|
|
padding: 12px;
|
|
border-radius: 10px;
|
|
|
|
@include screen-sm-min {
|
|
margin-inline-end: 43px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.skip-srp-backup-popover {
|
|
width: 365px;
|
|
|
|
&__icon {
|
|
display: block;
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
&__checkbox {
|
|
margin: 8px 12px 0 0;
|
|
}
|
|
|
|
&__label {
|
|
display: flex;
|
|
}
|
|
|
|
&__footer {
|
|
button {
|
|
width: 140px;
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
}
|