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

60 lines
862 B
SCSS
Raw Normal View History

.onboarding-metametrics {
2022-08-04 16:03:02 +02:00
@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 {
width: 16px;
}
.fa-check {
margin-inline-end: 12px;
2022-03-23 16:38:43 +01:00
color: var(--color-success-default);
padding-top: 2px;
}
.fa-times {
margin-inline-end: 12px;
2022-03-23 16:38:43 +01:00
color: var(--color-error-default);
padding-top: 3px;
}
&__terms a {
2022-03-23 16:38:43 +01:00
color: var(--color-primary-default);
}
&__buttons {
margin-top: 24px;
2022-08-04 16:03:02 +02:00
@include screen-sm-min {
margin-top: 40px;
}
button {
margin-bottom: 24px;
width: 50%;
2022-08-04 16:03:02 +02:00
@include screen-sm-min {
width: 200px;
}
}
}
}