From 1c428034776d8bc3d3fb2f15b10848c0276032ee Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Fri, 2 Mar 2018 09:15:02 +0100 Subject: [PATCH] Remove older firefox detection as Edge gets identified too --- src/style/index.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style/index.scss b/src/style/index.scss index db2d11f..ce26e62 100644 --- a/src/style/index.scss +++ b/src/style/index.scss @@ -76,8 +76,8 @@ body:before { pointer-events: none; } -/** Detect firefox older than quantum and browser without css grid support */ -@supports (not (animation: calc(0s))) or (not (display: grid)) { +/** Detect browser without css grid support */ +@supports (not (display: grid)) { body:before { display: block; }