chore: concert colors
This commit is contained in:
parent
f289c3d3d0
commit
b6c87a56ef
4 changed files with 4 additions and 4 deletions
|
@ -117,7 +117,7 @@ const playLabel = artist.total_plays === 1 ? "play" : "plays";
|
|||
<div id="concerts" class="concerts media-title">
|
||||
<div set:html={IconDeviceSpeaker({ size: 18 })}/> I've seen this artist live!
|
||||
</div>
|
||||
<ul>
|
||||
<ul class="concerts">
|
||||
{artist.concerts.map((concert, index) => (
|
||||
<li key={index}>
|
||||
On{" "}
|
||||
|
|
|
@ -53,7 +53,7 @@ const description =
|
|||
</>
|
||||
)}
|
||||
|
||||
<ul class="concert-list">
|
||||
<ul class="concerts concert-list">
|
||||
{paginatedConcerts.map((concert) => (
|
||||
<li>
|
||||
{concert.artist.url ? (
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
vertical-align: middle;
|
||||
|
||||
svg {
|
||||
stroke: var(--accent-color);
|
||||
stroke: var(var(--section-color), var(--accent-color));
|
||||
|
||||
&:is(:hover, :focus, :active) {
|
||||
stroke: var(--accent-color-hover);
|
||||
|
|
Reference in a new issue