Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
milkcee12 committed Feb 22, 2024
1 parent c420ce9 commit af29f37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/routes/(app)/archive/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</p>

<div class="title">
<p><i>{data.type}, {data.date}</p>
<p><i>{data.type}, {data.date}</i></p>
<h2>{data.title}</h2>
<Tags tags={data.tags} />
</div>
Expand Down Expand Up @@ -49,7 +49,8 @@
}
}
.breadcrumbs a, .footer a {
.breadcrumbs a,
.footer a {
text-decoration: none;
}
Expand Down

0 comments on commit af29f37

Please sign in to comment.