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`
48 lines
764 B
SCSS
48 lines
764 B
SCSS
@import 'choose-account/index';
|
|
@import 'redirect/index';
|
|
|
|
.permissions-connect {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
background: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@media screen and (min-width: 576px) {
|
|
.page-container {
|
|
max-height: none;
|
|
min-height: auto;
|
|
}
|
|
}
|
|
|
|
&__top-bar {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 16px 16px 0 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
&__back {
|
|
@extend %content-text;
|
|
|
|
color: $Grey-600;
|
|
cursor: pointer;
|
|
|
|
i {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
&__page-count {
|
|
@extend %content-text;
|
|
|
|
font-size: 12px;
|
|
color: #6a737d;
|
|
grid-column: 2;
|
|
justify-self: end;
|
|
font-weight: bold;
|
|
line-height: 21px;
|
|
}
|
|
}
|