lbry-desktop/src/renderer/scss/component/_item-list.scss

27 lines
447 B
SCSS
Raw Normal View History

2018-10-04 06:11:08 +02:00
.item-list {
background-color: $lbry-white;
2018-10-04 06:11:08 +02:00
margin-top: $spacing-vertical;
}
.item-list__item {
display: flex;
align-items: center;
padding: $spacing-vertical * 1/3;
input,
.item-list__item--cutoff {
margin-right: $spacing-vertical;
}
}
.item-list__item--selected {
background-color: $lbry-gray-1;
2018-10-04 06:11:08 +02:00
}
.item-list__item--cutoff {
white-space: nowrap;
text-overflow: ellipsis;
overflow-x: hidden;
max-width: 350px;
}