Skip to content

Commit

Permalink
Merge pull request #90 from Bitshala/takeaway
Browse files Browse the repository at this point in the history
fixes #85 : Takeaways name should be bold
  • Loading branch information
emjshrx authored Dec 22, 2023
2 parents 95812f6 + d8c128e commit 7db30c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/cohortPages/Description.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const { takeaways } = Astro.props;
{
takeaways.map((takeaway) => (
<li class="my-4 lg:text-xl">
<span class="font-bold">{takeaway.name}</span> :{" "}
{takeaway.desc}
<span class="font-header">{takeaway.name}</span>{" "}
: {takeaway.desc}
</li>
))
}
Expand Down

0 comments on commit 7db30c0

Please sign in to comment.