diff --git a/index.html b/index.html index e11fd0be2..ab06131f5 100644 --- a/index.html +++ b/index.html @@ -19,15 +19,15 @@ -
-
+
+

Please use Google Chrome or Microsoft Edge for the best experience on our website.

-
-
-

It looks like something went wrong while loading Cockpit. Resetting the settings can solve the problem.

- +
+

It looks like something went wrong while loading Cockpit. Resetting the settings can solve the problem.

+ +
@@ -45,68 +45,62 @@ if (!isChrome && !isEdge) { overlay.style.display = 'flex' content.style.display = 'none' + } else { + underlyingFallback.style.display = 'flex'; } proceedButton.addEventListener('click', function() { overlay.style.display = 'none'; content.style.display = 'block'; + underlyingFallback.style.display = 'flex'; }); clearSettingsButton.addEventListener('click', function() { localStorage.clear(); location.reload(); }); - - setTimeout(() => { - underlyingFallback.style.display = 'flex'; - }, 1500); })