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.
69 lines
980 B
69 lines
980 B
.confirm-import-token {
|
|
padding: 16px;
|
|
|
|
&__header {
|
|
@include H7;
|
|
|
|
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 {
|
|
@include H1;
|
|
|
|
color: var(--scorpion);
|
|
margin-right: 8px;
|
|
}
|
|
|
|
&__symbol {
|
|
@include H5;
|
|
|
|
color: var(--scorpion);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__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;
|
|
}
|
|
}
|
|
|