Spaces:
Runtime error
Runtime error
File size: 395 Bytes
47cfe3f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<script lang="ts">
import { fade } from 'svelte/transition';
export let message: string | null = null;
</script>
<div class="message" transition:fade>
{message}
</div>
<style lang="postcss" scoped>
.message {
@apply absolute left-1/2 top-1/2 text-white bg-black bg-opacity-80 font-semibold
p-5 z-20 rounded-sm -translate-x-1/2 transition-opacity duration-300 ease-in-out;
}
</style>
|