mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +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`
62 lines
958 B
SCSS
62 lines
958 B
SCSS
.loading-overlay {
|
|
left: 0;
|
|
z-index: 51;
|
|
position: fixed;
|
|
flex-direction: column;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex: 1 1 auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
|
|
&__screen-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__container {
|
|
position: absolute;
|
|
top: 33%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
&__message {
|
|
margin-top: 32px;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
color: $manatee;
|
|
}
|
|
|
|
&__error-screen {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 160px;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
&__error-buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
button {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
|
|
&__emoji {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
|
|
.spinner {
|
|
height: 58px;
|
|
width: 58px;
|
|
}
|