Don't force blur off on mobile

This commit is contained in:
Aylam 2023-08-28 13:53:59 +03:00 committed by Laura Hausmann
parent 8fda8aee4e
commit 1577ab6293
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -366,7 +366,7 @@ function checkForSplash() {
watch(
defaultStore.reactiveState.useBlurEffect,
(v) => {
if (v && deviceKind !== "smartphone") {
if (v) {
document.documentElement.style.removeProperty("--blur");
} else {
document.documentElement.style.setProperty("--blur", "none");