anki/ts/editor/HandleBackground.svelte

24 lines
576 B
Svelte
Raw Normal View History

2021-08-05 02:58:52 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
2021-08-06 02:19:36 +02:00
<script lang="ts">
import { onMount, createEventDispatcher } from "svelte";
let background: HTMLDivElement;
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { background }));
</script>
2021-09-02 21:01:29 +02:00
<div bind:this={background} on:mousedown|preventDefault on:dblclick />
2021-08-05 02:58:52 +02:00
<style lang="scss">
div {
width: 100%;
height: 100%;
background-color: black;
opacity: 0.2;
}
</style>