You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
654 B
46 lines
654 B
3 years ago
|
.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;
|
||
|
}
|
||
|
}
|