Anki/ts/editor/HandleBackground.svelte
2021-09-06 21:15:37 +10:00

14 lines
333 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<div on:mousedown|preventDefault on:click on:dblclick />
<style lang="scss">
div {
width: 100%;
height: 100%;
background-color: black;
opacity: 0.2;
}
</style>