mirror of https://github.com/VERT-sh/VERT.git
fix: respect effects setting in global upload region
This commit is contained in:
parent
442efb5e14
commit
790d6d7aff
|
@ -168,8 +168,10 @@
|
||||||
>
|
>
|
||||||
{#if dropping}
|
{#if dropping}
|
||||||
<div
|
<div
|
||||||
class="dragoverlay fixed w-screen h-screen opacity-50 dynadark:opacity-20 z-[100] pointer-events-none blur-2xl"
|
class="fixed w-screen h-screen opacity-50 dynadark:opacity-20 z-[100] pointer-events-none blur-2xl {$effects
|
||||||
class:_dragover={dropping}
|
? 'dragoverlay'
|
||||||
|
: 'bg-accent-blue'}"
|
||||||
|
class:_dragover={dropping && $effects}
|
||||||
transition:fade={{
|
transition:fade={{
|
||||||
duration,
|
duration,
|
||||||
easing: quintOut,
|
easing: quintOut,
|
||||||
|
|
Loading…
Reference in New Issue