#56 Add track empty state and fix compare button style and content on click

This commit is contained in:
Timothée Goguely 2024-12-17 15:26:04 +01:00
parent d30cd89b4f
commit 7c20f756f1
2 changed files with 14 additions and 1 deletions

View file

@ -11,6 +11,8 @@
position: relative;
margin: var(--space-16) auto;
border-radius: var(--rounded-lg);
display: flex;
gap: var(--gap);
}
.track figure {
@ -108,3 +110,10 @@
.grabbing {
cursor: grabbing;
}
/* Empty */
.track-empty {
display: grid;
place-items: center;
border: 1px dashed var(--color-black-20);
}