We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa9ed7 commit fb60e8dCopy full SHA for fb60e8d
1 file changed
src/islands/svelte/hamburger-button.svelte
@@ -6,7 +6,7 @@
6
</script>
7
8
<Popover.Root>
9
- <Popover.Trigger class="h-16 w-16 hover:bg-gray-200 lg:hidden">
+ <Popover.Trigger class="h-16 w-16 hover:bg-gray-200/90 lg:hidden">
10
<div class="mx-auto my-auto h-6 w-6 text-gray-600">
11
<img src="/icons/menu.svg" alt="open menu" />
12
</div>
@@ -15,11 +15,11 @@
15
<Popover.Content align="end" side="bottom" strategy="fixed">
16
<div
17
transition:fade|global={{ duration: 70 }}
18
- class="w-[100vw] bg-gray-50 transition-opacity duration-300 lg:hidden"
+ class="w-[100vw] bg-gray-50/70 transition-opacity duration-300 lg:hidden"
19
>
20
<ul>
21
{#each links as link}
22
- <li class="hover:bg-gray-200">
+ <li class="hover:bg-gray-200/90">
23
<a
24
href={link.href}
25
class="block px-4 py-2"
0 commit comments