mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +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`
40 lines
653 B
SCSS
40 lines
653 B
SCSS
.error-page {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
align-items: center;
|
|
font-family: Roboto;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
padding: 35px 10px 10px 10px;
|
|
height: 100%;
|
|
|
|
&__header {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 42px;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
&__subheader {
|
|
font-size: 19px;
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
max-width: 720px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__details {
|
|
font-size: 18px;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
max-width: 720px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
&__stack {
|
|
overflow-x: auto;
|
|
background-color: #eee;
|
|
}
|
|
}
|