Add album grouping column (#1722)

* Add album grouping column

---------

Co-authored-by: jeffvli <jeffvictorli@gmail.com>
This commit is contained in:
Norman
2026-02-26 20:34:55 -08:00
committed by GitHub
parent 4918b412b2
commit eb8913479b
18 changed files with 467 additions and 120 deletions
@@ -0,0 +1,33 @@
.container {
display: flex;
gap: var(--theme-spacing-sm);
width: 100%;
height: 100%;
padding: 0 var(--theme-spacing-xs);
}
.image-container {
position: relative;
box-sizing: border-box;
flex-shrink: 0;
height: 100%;
aspect-ratio: 1;
padding-top: calc(var(--theme-spacing-xs) * 0.5);
}
.info {
display: flex;
flex-direction: column;
min-width: 0;
padding: 0;
overflow: hidden;
}
.album-name {
font-size: var(--theme-font-size-sm);
}
.artist-name {
font-size: var(--theme-font-size-xs);
opacity: 0.7;
}