feat: associate books and artists

This commit is contained in:
Cory Dransfeldt 2024-08-23 17:04:36 -07:00
parent 40ad47aacb
commit fdf0ebf2ca
No known key found for this signature in database
12 changed files with 97 additions and 28 deletions

View file

@ -6,6 +6,10 @@ button,
appearance: none;
border: none;
& + hr {
margin-top: 0;
}
&:not(.theme-toggle) {
border: 2px solid var(--accent-color);
padding: var(--sizing-xs) var(--sizing-md);

View file

@ -112,6 +112,15 @@
p {
margin: var(--sizing-base) 0;
&.music {
color: var(--music);
& svg {
stroke: var(--music);
margin-right: var(--sizing-xs);
}
}
}
}

View file

@ -26,6 +26,15 @@
}
}
& p.books {
color: var(--books);
& svg {
stroke: var(--books);
margin-right: var(--sizing-xs);
}
}
& .artist-display {
display: flex;
flex-direction: column;