13 lines
232 B
SCSS
13 lines
232 B
SCSS
|
@import '../../vars';
|
||
|
|
||
|
.playlist-page {
|
||
|
.track-list-content { // Our Track List
|
||
|
& > .track-list-columned { // Column content
|
||
|
& > row {
|
||
|
&:nth-child(odd):not(:selected) {
|
||
|
background-color: $midnight;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|