fix: Profile bg blur respects user blur choice

This commit is contained in:
ThatOneCalculator 2022-09-15 14:55:04 -07:00
parent 4e7e6de82b
commit b33b688720
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "12.119.0-calc.1-rc.5", "version": "12.119.0-calc.1-rc.6",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -122,7 +122,7 @@ onMounted(() => {
background-position: center; background-position: center;
pointer-events: none; pointer-events: none;
opacity: .1; opacity: .1;
filter: blur(10px); filter: var(--blur, blur(10px));
} }
} }

View File

@ -228,7 +228,7 @@ onUnmounted(() => {
background-position: center; background-position: center;
pointer-events: none; pointer-events: none;
opacity: .1; opacity: .1;
filter: blur(10px); filter: var(--blur, blur(10px));
} }
} }