We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eb0e47 commit 9bfb54aCopy full SHA for 9bfb54a
1 file changed
src/lib/sidebar/navigation/SidebarCategory.svelte
@@ -16,10 +16,10 @@
16
17
<details ontoggle={() => (windowInfo.isNavOpen = true)} class="w-full group marker:hidden">
18
<summary
19
- class="rounded-lg cursor-pointer p-1 w-full flex gap-2 items-center justify-between text-left hover:bg-stone-700 hover:text-white hover:font-medium marker:hidden focus-visible:outline-2 focus-visible:outline-dph-orange">
+ class="rounded-lg cursor-pointer p-1 w-full flex gap-2 items-center text-left hover:bg-stone-700 hover:text-white hover:font-medium marker:hidden focus-visible:outline-2 focus-visible:outline-dph-orange">
20
<Icon />
21
{#if windowInfo.isNavOpen}
22
- <span>{name}</span>
+ <span class="grow min-w-0">{name}</span>
23
<IconExpand class="motion-safe:transition-all group-open:rotate-90 rotate-0" />
24
{/if}
25
</summary>
0 commit comments