UpVent / upvent-svelte

UpVent Svelte Frontend - Powered by Fernet Branca.
GNU Affero General Public License v3.0
4 stars 0 forks source link

Navbar doesn't have a background in Firefox (Desktop & Mobile) #36

Closed VentGrey closed 2 years ago

VentGrey commented 2 years ago

This is the faulty code:

    @supports (backdrop-filter: none) {
        .navbar-upvent {
            backdrop-filter: saturate(100%) blur(100px);
            -webkit-backdrop-filter: saturate(100%) blur(100px);
        }
    }
    @supports not (backdrop-filter: none) {
        .background {
            background-color: #FAFAFA;
        }
    }