mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
44 lines
612 B
SCSS
44 lines
612 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%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__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;
|
|
}
|
|
}
|
|
}
|
|
}
|