summaryrefslogtreecommitdiff
path: root/src/components/LallansIssueContributors.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/LallansIssueContributors.astro')
-rw-r--r--src/components/LallansIssueContributors.astro4
1 files changed, 2 insertions, 2 deletions
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>