.pairs-list {
ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
.pairs-list-header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
border-bottom: solid 1px var(--psp-inactive--border-color);
margin-bottom: 12px;
}
.pairs-list-item {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 4px;
width: 100%;
margin-bottom: 4px;
&:last-child .is_column_active {
opacity: 0.3;
cursor: default;
pointer-events: none;
}
}
}