mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
d01a2ad7e5
* styling updates Co-authored-by: Alex Donesky <adonesky@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
55 lines
878 B
SCSS
55 lines
878 B
SCSS
.onboarding-metametrics {
|
|
@media screen and (min-width: $break-large) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
ul {
|
|
margin: 24px 0 0 0;
|
|
|
|
li {
|
|
padding-bottom: 20px;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.fa {
|
|
width: 16px;
|
|
}
|
|
|
|
.fa-check {
|
|
margin-inline-end: 12px;
|
|
color: var(--color-success-default);
|
|
}
|
|
|
|
.fa-times {
|
|
margin-inline-end: 12px;
|
|
color: var(--color-error-default);
|
|
}
|
|
|
|
&__terms a {
|
|
color: var(--color-primary-default);
|
|
}
|
|
|
|
&__buttons {
|
|
margin-top: 24px;
|
|
width: 100%;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
margin-top: 40px;
|
|
justify-content: space-between;
|
|
display: flex;
|
|
}
|
|
|
|
button {
|
|
margin-bottom: 24px;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
width: 200px;
|
|
}
|
|
}
|
|
}
|
|
}
|