Skip to content

Commit

Permalink
fix(resume): change sidebar tag to aside
Browse files Browse the repository at this point in the history
  • Loading branch information
kettei-sproutty committed Jun 8, 2024
1 parent 598d1c3 commit 4f89bc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/resume/resume-sidebar.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" context="module">
export type ResumeSidebarType = Record<string, string[]>
export type ResumeSidebarType = Record<string, string[]>
</script>
<script lang="ts">
Expand All @@ -12,7 +12,7 @@
const { sidebarInfos }: ResumeSidebarProps = $props();
</script>

<section id="resume-sidebar" class="w-full bg-primary-800 border-primary-300 flex flex-col gap-4 p-2 min-h-full">
<aside id="resume-sidebar" class="w-full bg-primary-800 border-primary-300 flex flex-col gap-4 p-2 min-h-full">
{#each Object.keys(sidebarInfos) as category}
<div class="gap-2">
<TextDivider padding={false} className="text-sm pb-2 first-letter:uppercase">{category}</TextDivider>
Expand All @@ -23,4 +23,4 @@
</ul>
</div>
{/each}
</section>
</aside>

0 comments on commit 4f89bc6

Please sign in to comment.