optimize song list load

This commit is contained in:
2022-11-10 16:41:05 +01:00
parent 898587bbbd
commit 34cb19dfd0
12 changed files with 9022 additions and 19852 deletions

View File

@@ -0,0 +1,45 @@
@import "../../../../styles/styles";
.list-item {
padding: 5px 20px;
display: grid;
grid-template-columns: 50px auto 50px 30px;
& > div {
display: flex;
align-items: center;
}
cursor: pointer;
&:hover {
background: @primary-color;
color: #fff;
.warning {
color: #fff;
}
}
}
.number {
font-size: 18px;
font-weight: bold;
text-align: right;
}
.neutral, .warning, .success {
width: 30px;
}
.neutral {
color: #888;
}
.warning {
color: #ba3500;
}
.success {
color: #307501;
}