1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 19:10:22 +01:00
metamask-extension/ui/app/pages/first-time-flow/seed-phrase/reveal-seed-phrase/index.scss
Mark Stacey f46dda0195
Uncomment and fix all auto-fixable stylelint rules (#8989)
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`
2020-07-15 10:13:40 -03:00

74 lines
1.2 KiB
SCSS

.reveal-seed-phrase {
@media screen and (max-width: 576px) {
display: flex;
flex-direction: column;
width: 96%;
margin-left: 2%;
margin-right: 2%;
}
&__secret {
position: relative;
display: flex;
justify-content: center;
border: 1px solid #cdcdcd;
border-radius: 6px;
background-color: $white;
padding: 18px;
margin-top: 36px;
max-width: 350px;
}
&__secret-words {
width: 310px;
font-size: 1.25rem;
text-align: center;
&--hidden {
filter: blur(5px);
}
}
&__secret-blocker {
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.6);
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
padding: 8px 0 18px;
cursor: pointer;
}
&__reveal-button {
color: $white;
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
margin-top: 8px;
text-align: center;
}
&__export-text {
color: $curious-blue;
cursor: pointer;
font-weight: 500;
}
button {
margin-top: 0;
}
&__buttons {
display: flex;
.first-time-flow__button:last-of-type {
margin-left: 20px;
}
}
}