mirror of
https://github.com/bytedream/stream-bypass.git
synced 2026-08-05 05:20:41 +02:00
add toast when copying url to clipboard
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<script lang="ts">
|
||||
import { fly } from 'svelte/transition';
|
||||
import { toast } from '@/entrypoints/popup/state';
|
||||
</script>
|
||||
|
||||
{#if $toast}
|
||||
<div
|
||||
class="absolute top-2 left-1/2 -translate-x-1/2 z-20 px-3 py-1.5 bg-gray-700 text-gray-100 text-sm rounded shadow-lg pointer-events-none"
|
||||
transition:fly={{ y: -20, duration: 200 }}
|
||||
>
|
||||
{$toast.message}
|
||||
</div>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user