first commit

This commit is contained in:
2023-04-20 20:37:55 +02:00
parent dcc30ded70
commit f72df76a02
39 changed files with 4594 additions and 178 deletions

View File

@@ -0,0 +1,24 @@
<script>
import Player from '$lib/module/player.svelte'
import Filter from '$lib/module/filter.svelte';
</script>
<main>
<Filter />
<div class="player-wrapper">
<Player />
</div>
</main>
<style>
main {
width: 100%;
}
.player-wrapper {
position: fixed;
bottom: 0
}
</style>