mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
40 lines
659 B
SCSS
40 lines
659 B
SCSS
@import 'confirm-seed-phrase/index';
|
|
@import 'reveal-seed-phrase/index';
|
|
@import 'seed-phrase-intro/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: 81px;
|
|
}
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.first-time-flow__text-block {
|
|
color: #5a5a5a;
|
|
}
|
|
}
|
|
}
|