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`
68 lines
1.2 KiB
SCSS
68 lines
1.2 KiB
SCSS
@import 'token-list-placeholder/index';
|
|
|
|
.token-list {
|
|
&__title {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
&__tokens-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&__token {
|
|
transition: 200ms ease-in-out;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
padding: 8px;
|
|
margin-top: 8px;
|
|
box-sizing: border-box;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
border: 2px solid transparent;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
border: 2px solid rgba($malibu-blue, 0.5);
|
|
}
|
|
|
|
&--selected {
|
|
border: 2px solid $malibu-blue !important;
|
|
}
|
|
|
|
&--disabled {
|
|
opacity: 0.4;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
&__token-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
background-position: center;
|
|
border-radius: 50%;
|
|
background-color: $white;
|
|
box-shadow: 0 2px 4px 0 rgba($black, 0.24);
|
|
margin-right: 12px;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
&__token-data {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__token-name {
|
|
/*rtl:ignore*/
|
|
direction: ltr;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|