mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
Don't force blur off on mobile
This commit is contained in:
parent
8fda8aee4e
commit
1577ab6293
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue