File size: 235 Bytes
ca5bd83
72db8a4
ca5bd83
 
72db8a4
ca5bd83
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script lang="ts">
import { audioBlob } from './stores';
</script>

<audio src={$audioBlob} controls />

<style>
audio {
  width: 100%;
  margin: 1rem auto;
}

@media (min-width: 600px) {
  audio {
    max-width: 40rem;
  }
}
</style>