diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/LallansIssueContributions.astro | 8 | ||||
| -rw-r--r-- | src/components/LallansIssueContributors.astro | 4 | ||||
| -rw-r--r-- | src/components/Scotsoun.astro | 2 |
3 files changed, 8 insertions, 6 deletions
diff --git a/src/components/LallansIssueContributions.astro b/src/components/LallansIssueContributions.astro index 5d3084d..165829d 100644 --- a/src/components/LallansIssueContributions.astro +++ b/src/components/LallansIssueContributions.astro @@ -15,13 +15,15 @@ const t = translate(locale); <section> <h2>Contributions</h2> - <ul class="lallans-issue__contributions"> + <ul class="product__contributions"> { contributions.map((contribution) => ( <li> - <span class="italic">{contribution.title}</span> + <span class="product__contribution__title">{contribution.title}</span> {'author' in contribution && ( - <span> {t(tSite, { key: 'by' }) + ' ' + contribution.author}</span> + <span class="product__contribution__author"> + {t(tSite, { key: 'by' }) + ' ' + contribution.author} + </span> )} </li> )) diff --git a/src/components/LallansIssueContributors.astro b/src/components/LallansIssueContributors.astro index 5ac5d42..4a5683c 100644 --- a/src/components/LallansIssueContributors.astro +++ b/src/components/LallansIssueContributors.astro @@ -8,9 +8,9 @@ interface Props { const { contributors } = Astro.props; --- -<section class="lallans-contributors"> +<section> <h2>Contributors</h2> - <ul> + <ul class="product__contributors"> {contributors.map((contributor) => <li>{contributor}</li>)} </ul> </section> diff --git a/src/components/Scotsoun.astro b/src/components/Scotsoun.astro index bbf9730..cca330d 100644 --- a/src/components/Scotsoun.astro +++ b/src/components/Scotsoun.astro @@ -56,7 +56,7 @@ const t = translate(locale); scotsoun?.trackList && scotsoun.trackList.length > 1 && ( <> <h2>Track list</h2> - <ol> + <ol class="product__track-list"> {scotsoun.trackList.map((track) => ( <li>{track}</li> ))} |
