ziemniak/src/App.svelte

24 lines
346 B
Svelte
Raw Normal View History

2022-07-28 01:47:53 +02:00
<!--
Copyright 2022 ModZero.
SPDX-License-Identifier: AGPL-3.0-or-later
-->
2022-07-27 12:58:22 +02:00
<script type="ts">
2022-07-29 04:22:21 +02:00
import Timer from "./components/Timer.svelte";
2022-07-26 05:03:28 +02:00
</script>
<main>
2022-07-29 04:22:21 +02:00
<Timer />
2022-07-26 05:03:28 +02:00
</main>
2022-07-28 01:47:53 +02:00
<style>
main {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
display: flex;
flex-direction: column;
}
</style>