mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-23 10:56:28 +02:00
add additional height calculation for album group
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user