leerob / leerob.io

✨ My portfolio built with Next.js, Tailwind, and Vercel.

Home Page:https://leerob.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Firefox currently has no support for backdrop-filter

luigircruz opened this issue · comments

Expected Behavior

Blur effect on light theme sticky-nav when scrolling down from firefox

Current Behavior

Hard to read nav menus overlapping the main contents when scrolling down the page.

image

Possible Solution

You can apply 100% opacity to browsers that don't support it.

@supports not (backdrop-filter: none) {
  .sticky-nav {
    @apply bg-opacity-100;
  }
}

Steps to Reproduce

  1. Open a blog post from firefox
  2. Scroll down the page