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`
70 lines
1.0 KiB
SCSS
70 lines
1.0 KiB
SCSS
.confirm-add-token {
|
|
padding: 16px;
|
|
|
|
&__header {
|
|
font-size: 0.75rem;
|
|
display: flex;
|
|
}
|
|
|
|
&__token {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__balance {
|
|
flex: 0 0 30%;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__token-list {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
|
|
.token-balance {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: flex-start;
|
|
|
|
&__amount {
|
|
color: $scorpion;
|
|
font-size: 43px;
|
|
line-height: 43px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
&__symbol {
|
|
color: $scorpion;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__token-list-item {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
margin-top: 8px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&__data {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px;
|
|
}
|
|
|
|
&__name {
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
&__token-icon {
|
|
margin-right: 12px;
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|