ca5bd83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   | 
								1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  | 
								<script lang="ts">
import { playing } from '$lib/stores';
</script>
<audio controls src="download.wav" />
<style>
audio {
  width: 100%;
  margin: 1rem auto;
}
@media (min-width: 600px) {
  audio {
    max-width: 40rem;
  }
}
</style>
 |