feat: show track numbers on album tracklist

This commit is contained in:
rramiachraf
2024-05-02 13:09:09 +01:00
parent 59929bb891
commit 8f838a20e6
3 changed files with 32 additions and 6 deletions

View File

@ -12,3 +12,25 @@
flex-shrink: 0;
flex-grow: 1;
}
#album-single-track {
display: grid;
grid-template-columns: 3rem 1fr;
gap: 1rem;
align-items: center;
justify-content: center;
}
#album-single-track p {
color: #181d31;
font-weight: 500;
}
#album-single-track small {
font-size: 1.5rem;
color: #333;
}
#album-single-track:hover p {
text-decoration: underline;
}