Skip to content

Commit

Permalink
fix Tome_Subheading indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Apr 18, 2024
1 parent 7d85020 commit 4c4c111
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/modern-rules-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ryanatkn/fuz": patch
---

fix `Tome_Subheading` indentation
9 changes: 2 additions & 7 deletions src/lib/Library_Page_Links.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,8 @@
{#snippet content()}
<ul class="unstyled">
{#each library_links.library_links as item (item.id)}
<li role="none" transition:slide>
<a
class="menu_item"
href="#{item.slug}"
class:selected={item.slug === hash}
class:ml_xl4={item.tag === 'h4'}>{item.text}</a
>
<li role="none" transition:slide class:pl_xl4={item.tag === 'h4'}>
<a class="menu_item" href="#{item.slug}" class:selected={item.slug === hash}>{item.text}</a>
</li>
{/each}
</ul>
Expand Down

0 comments on commit 4c4c111

Please sign in to comment.