We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 223e215 commit e720da1Copy full SHA for e720da1
1 file changed
src/lib/sidebar/Sidebar.svelte
@@ -91,7 +91,7 @@
91
{/if}
92
<button
93
aria-label="{windowInfo.isNavOpen ? 'Collapse' : 'Expand'} Sidebar"
94
- class="hidden sm:block text-stone-200 text-lg motion-safe:transition-all focus-visible:outline-2 focus-visible:outline-dph-orange {windowInfo.isNavOpen
+ class="hidden sm:block rounded-lg cursor-pointer text-stone-200 text-lg hover:bg-stone-700 hover:text-white motion-safe:transition-all focus-visible:outline-2 focus-visible:outline-dph-orange {windowInfo.isNavOpen
95
? 'rotate-0'
96
: 'rotate-180'}"
97
onclick={() => (windowInfo.isNavOpen = !windowInfo.isNavOpen)}>
0 commit comments