chore: concert colors

This commit is contained in:
Cory Dransfeldt 2024-11-22 05:51:26 -08:00
parent f289c3d3d0
commit b6c87a56ef
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions
package.json
src
pages/music
styles/components

View file

@ -1,7 +1,7 @@
{
"name": "coryd.dev",
"type": "module",
"version": "1.1.2",
"version": "1.1.3",
"scripts": {
"dev": "astro dev",
"start": "astro dev",

View file

@ -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{" "}

View file

@ -53,7 +53,7 @@ const description =
</>
)}
<ul class="concert-list">
<ul class="concerts concert-list">
{paginatedConcerts.map((concert) => (
<li>
{concert.artist.url ? (

View file

@ -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);