add additional height calculation for album group

This commit is contained in:
jeffvli
2026-07-10 01:45:39 -07:00
parent f957fb0a05
commit 67a2be1559
6 changed files with 191 additions and 52 deletions
@@ -1,6 +1,7 @@
.container {
display: flex;
gap: var(--theme-spacing-sm);
align-items: flex-start;
width: 100%;
height: 100%;
padding: 0 var(--theme-spacing-xs);
@@ -42,15 +43,23 @@
}
.info {
display: flex;
flex-direction: column;
display: grid;
grid-template-rows: auto auto auto;
gap: 0;
align-content: start;
min-width: 0;
padding: 0;
overflow: hidden;
padding-top: calc(var(--theme-spacing-xs) * 0.5);
}
.info.enlarged-image {
padding-top: var(--theme-spacing-xs);
}
.album-name {
font-size: var(--theme-font-size-sm);
line-height: 1.25;
overflow-wrap: anywhere;
}
.album-name a {
@@ -64,5 +73,13 @@
.artist-name {
font-size: var(--theme-font-size-xs);
line-height: 1.25;
overflow-wrap: anywhere;
opacity: 0.7;
}
.controls-row {
flex-shrink: 0;
min-height: 22px;
margin-top: var(--theme-spacing-xxs);
}