Skip to content

Commit

Permalink
fix(frontend): do not use a header for the inscription title
Browse files Browse the repository at this point in the history
  • Loading branch information
jmiguelv committed Jul 5, 2024
1 parent fcb965b commit 1da3c94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@
<ol>
{#each displayedInscriptions as inscription}
<li>
<h4>
<p class="title">
<BaseLink href="inscription/{inscription.file}"
>{inscription.metadata.title} <small>{inscription.file}</small></BaseLink
>
</h4>
</p>
<dl>
<dt>Settlement</dt>
<dd>{inscription.metadata.settlement}</dd>
Expand All @@ -114,6 +114,10 @@
</article>

<style>
.title {
font-weight: bolder;
}
dt {
margin-block-start: unset;
}
Expand Down

0 comments on commit 1da3c94

Please sign in to comment.