mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
46 lines
654 B
SCSS
46 lines
654 B
SCSS
|
.loading-span {
|
||
|
display: flex;
|
||
|
height: 250px;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
padding: 32px;
|
||
|
}
|
||
|
|
||
|
.token-list-item {
|
||
|
padding: 8px;
|
||
|
display: flex;
|
||
|
flex-flow: row nowrap;
|
||
|
align-items: center;
|
||
|
cursor: pointer;
|
||
|
padding: 8px;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: rgba($alto, 0.2);
|
||
|
}
|
||
|
|
||
|
&__data {
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
|
||
|
&__symbol {
|
||
|
@include Paragraph;
|
||
|
|
||
|
line-height: 140%;
|
||
|
margin-bottom: 2px;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
&__balance {
|
||
|
@include H7;
|
||
|
|
||
|
display: flex;
|
||
|
flex-flow: row nowrap;
|
||
|
}
|
||
|
|
||
|
&__balance__label {
|
||
|
margin-right: 4px;
|
||
|
}
|
||
|
}
|