mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
09c60e2038
* UX: Icons: Remove IconCheck and fa-check * update jest snapshots * Update story * Remove dead CSS * Update ui/components/app/account-menu/account-menu.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/dropdowns/network-dropdown.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/modals/metametrics-opt-in-modal/metametrics-opt-in-modal.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/settings/networks-tab/networks-list-item/networks-list-item.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/settings/networks-tab/networks-list-item/networks-list-item.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/permissions-connect/redirect/permissions-redirect.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/send/send-content/add-recipient/domain-input.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/onboarding-flow/metametrics/metametrics.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/modals/transaction-confirmed/transaction-confirmed.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/modals/metametrics-opt-in-modal/metametrics-opt-in-modal.component.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Fix jest snapshots * Update sizes of network andd account menu checks * Fix ICON_SIZES in account menu * Improvements * Use IconColor * Use IconColor * Lint * Update snapshots --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
50 lines
721 B
SCSS
50 lines
721 B
SCSS
.onboarding-metametrics {
|
|
@include screen-sm-min {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
ul {
|
|
margin: 24px 0 0 0;
|
|
width: 100%;
|
|
|
|
li {
|
|
padding-bottom: 20px;
|
|
display: flex;
|
|
|
|
> span {
|
|
width: 90%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.fa-times {
|
|
margin-inline-end: 12px;
|
|
color: var(--color-error-default);
|
|
padding-top: 3px;
|
|
}
|
|
|
|
&__terms a {
|
|
color: var(--color-primary-default);
|
|
}
|
|
|
|
&__buttons {
|
|
margin-top: 24px;
|
|
|
|
@include screen-sm-min {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
button {
|
|
margin-bottom: 24px;
|
|
width: 50%;
|
|
|
|
@include screen-sm-min {
|
|
width: 200px;
|
|
}
|
|
}
|
|
}
|
|
}
|