feat: Modals & release downloading

This commit is contained in:
Aleksi Lassila
2024-04-01 12:39:09 +03:00
parent ad8476d78a
commit 243ee258c1
30 changed files with 312 additions and 105 deletions

View File

@@ -0,0 +1,17 @@
<script>
import Container from '../../../Container.svelte';
</script>
<Container
navigationActions={{
left: () => {
history.back();
return false;
}
}}
focusOnMount
trapFocus
class="fixed inset-0 z-20"
>
<slot />
</Container>