Show album cover for current track

This commit is contained in:
floppydiskette 2024-12-21 00:21:18 +00:00
commit b65eca420a
4 changed files with 23 additions and 3 deletions

View file

@ -252,6 +252,19 @@ table.music-top10 tr td:first-child {
background-color: var(--table-header);
}
div.current-track {
display: grid;
grid-template-columns: 180px auto;
grid-template-rows: 1fr;
grid-column-gap: 10px;
align-items: center;
}
div.current-track img {
float: left;
filter: var(--shadow-small);
border: var(--border);
}
/** Bookmarks **/
div.bookmark-category:first-child h2 {