Skip to content

Commit

Permalink
change default tempo, add button hover
Browse files Browse the repository at this point in the history
  • Loading branch information
debashisbiswas committed Jan 29, 2024
1 parent 87ca962 commit a38d4c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
let playing = false;
let scheduleId = 0;
Tone.Transport.bpm.value = 60;
Tone.Transport.bpm.value = 80;
const player = new Tone.Player("./asrx_down.wav").toDestination();
async function togglePlaying() {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Button.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<button class="px-8 py-2 bg-teal-400/10 text-teal-300 rounded-lg w-full text-center" on:click>
<button class="px-8 py-2 bg-teal-400/10 text-teal-300 rounded-lg w-full text-center transition hover:bg-teal-400/20" on:click>
<slot />
</button>

0 comments on commit a38d4c8

Please sign in to comment.