You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
566 B
37 lines
566 B
6 years ago
|
@import './confirm-seed-phrase/index';
|
||
|
|
||
|
@import './reveal-seed-phrase/index';
|
||
|
|
||
|
.seed-phrase {
|
||
|
|
||
|
&__sections {
|
||
|
display: flex;
|
||
|
|
||
|
@media screen and (min-width: $break-large) {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: $break-small) {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__main {
|
||
|
flex: 3;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
|
||
|
&__side {
|
||
|
flex: 2;
|
||
|
min-width: 0;
|
||
|
|
||
|
@media screen and (min-width: $break-large) {
|
||
|
margin-left: 48px;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: $break-small) {
|
||
|
margin-top: 24px;
|
||
|
}
|
||
|
}
|
||
|
}
|