summaryrefslogtreecommitdiff
path: root/src/components/LallansIssueContributions.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-12-16 11:49:48 +0000
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-01-12 08:28:53 +0000
commit91e3b90179ca4b75dbbb1c06c8188dca0bdecf67 (patch)
tree2421dbccebf24b6650363245b3525fa65603cc1e /src/components/LallansIssueContributions.astro
parenta783b4a6858f25a1453d77931926ba93bc0b7052 (diff)
Eiks 31 fixes (#43)
* Eiks 31 fixes * Improves list styling
Diffstat (limited to 'src/components/LallansIssueContributions.astro')
-rw-r--r--src/components/LallansIssueContributions.astro8
1 files changed, 5 insertions, 3 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>
))