ziemniak/src/App.svelte

24 lines
346 B
Svelte

<!--
Copyright 2022 ModZero.
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<script type="ts">
import Timer from "./components/Timer.svelte";
</script>
<main>
<Timer />
</main>
<style>
main {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
display: flex;
flex-direction: column;
}
</style>