first commit
This commit is contained in:
24
src/routes/[mental_state]/+page.svelte
Normal file
24
src/routes/[mental_state]/+page.svelte
Normal 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>
|
Reference in New Issue
Block a user