include album artist song/album count for jellyfin, and disable playing/adding playinsts for artists with no albums

This commit is contained in:
Kendall Garner 2025-05-07 21:16:47 -07:00
parent 6f7cb468b2
commit 5d9906b8f2
No known key found for this signature in database
GPG key ID: 9355F387FE765C94
4 changed files with 20 additions and 5 deletions

View file

@ -15,7 +15,7 @@ const MotionButton = styled(UnstyledButton)`
fill: var(--btn-filled-fg);
}
&:hover {
&:hover:not([disabled]) {
background: var(--btn-filled-bg);
transform: scale(1.1);
@ -28,6 +28,10 @@ const MotionButton = styled(UnstyledButton)`
transform: scale(0.95);
}
&:disabled {
opacity: 0.6;
}
transition: background-color 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
`;