mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
f46dda0195
All stylelint rules that can be automatically fixed have been uncommented. The rules are: * `at-rule-empty-line-before` * `block-closing-brace-empty-line-before` * `block-closing-brace-newline-before` * `block-opening-brace-space-before` * `color-hex-case` * `color-hex-length` * `comment-empty-line-before` * `declaration-block-semicolon-newline-after` * `declaration-block-semicolon-space-after` * `declaration-block-trailing-semicolon` * `declaration-colon-space-after` * `declaration-empty-line-before` * `function-comma-space-after` * `function-comma-space-before` * `indentation` * `length-zero-no-unit` * `no-eol-whitespace` * `no-missing-end-of-source-newline` * `number-leading-zero` * `number-no-trailing-zeros` * `rule-empty-line-before` * `selector-list-comma-newline-after` * `selector-pseudo-element-colon-notation`
39 lines
624 B
SCSS
39 lines
624 B
SCSS
@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: 81px;
|
|
}
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.first-time-flow__text-block {
|
|
color: #5a5a5a;
|
|
}
|
|
}
|
|
}
|