1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-01 21:57:06 +01:00
metamask-extension/ui/pages/onboarding-flow/metametrics/index.scss
dragana8 d01a2ad7e5
Overall CSS #13441 (#13902)
* 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>
2022-05-16 13:38:04 -05:00

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;
}
}
}
}