mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +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`
53 lines
756 B
SCSS
53 lines
756 B
SCSS
.settings-tab {
|
|
&__error {
|
|
padding-bottom: 20px;
|
|
text-align: center;
|
|
color: $crimson;
|
|
}
|
|
|
|
&__advanced-link {
|
|
@extend %small-link;
|
|
|
|
padding-left: 5px;
|
|
}
|
|
|
|
&__rpc-save-button {
|
|
align-self: flex-end;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
width: 25%;
|
|
}
|
|
|
|
&__button--red {
|
|
border-color: lighten($monzo, 10%);
|
|
color: $monzo;
|
|
|
|
&:active {
|
|
background: lighten($monzo, 55%);
|
|
border-color: $monzo;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: $monzo;
|
|
}
|
|
}
|
|
|
|
&__radio-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__radio-button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
&__radio-label {
|
|
padding-left: 4px;
|
|
}
|
|
}
|