Skip to content

Commit 56eff3e

Browse files
committed
change hamburger button style
1 parent fb60e8d commit 56eff3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/islands/svelte/hamburger-button.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</script>
77

88
<Popover.Root>
9-
<Popover.Trigger class="h-16 w-16 hover:bg-gray-200/90 lg:hidden">
9+
<Popover.Trigger class="h-16 w-16 hover:bg-gray-100 lg:hidden">
1010
<div class="mx-auto my-auto h-6 w-6 text-gray-600">
1111
<img src="/icons/menu.svg" alt="open menu" />
1212
</div>
@@ -15,11 +15,11 @@
1515
<Popover.Content align="end" side="bottom" strategy="fixed">
1616
<div
1717
transition:fade|global={{ duration: 70 }}
18-
class="w-[100vw] bg-gray-50/70 transition-opacity duration-300 lg:hidden"
18+
class="w-[100vw] bg-gray-50/70 backdrop-blur-lg transition-opacity duration-300 lg:hidden"
1919
>
2020
<ul>
2121
{#each links as link}
22-
<li class="hover:bg-gray-200/90">
22+
<li class="hover:bg-gray-100">
2323
<a
2424
href={link.href}
2525
class="block px-4 py-2"

0 commit comments

Comments
 (0)