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}
|
||||
<div
|
||||
class="dragoverlay fixed w-screen h-screen opacity-50 dynadark:opacity-20 z-[100] pointer-events-none blur-2xl"
|
||||
class:_dragover={dropping}
|
||||
class="fixed w-screen h-screen opacity-50 dynadark:opacity-20 z-[100] pointer-events-none blur-2xl {$effects
|
||||
? 'dragoverlay'
|
||||
: 'bg-accent-blue'}"
|
||||
class:_dragover={dropping && $effects}
|
||||
transition:fade={{
|
||||
duration,
|
||||
easing: quintOut,
|
||||
|
|
Loading…
Reference in New Issue