Add spacing between Now entries

This commit is contained in:
2025-11-19 11:55:58 +13:00
parent 32b9a29028
commit ef0c8dd981

View File

@@ -23,13 +23,13 @@ const lastUpdated = getFormattedDate(records[0].updated)
</div> </div>
<div slot="content" class=""> <div slot="content" class="">
<p class="mb-1 md:mt-2 italic ">Last Updated: {lastUpdated}</p> <p class="mb-1 md:mt-5 italic ">Last Updated: {lastUpdated}</p>
{ {
records.map(r => ( records.map(r => (
<> <div class="mb-3">
<h3>{r.heading}</h3> <h3>{r.heading}</h3>
<Fragment set:html={r.content}/> <Fragment set:html={r.content}/>
</> </div>
)) ))
} }
</div> </div>