Skip to content

Commit

Permalink
feature: turn IPA buttons into Bootstrap themed ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Attacktive committed Aug 14, 2024
1 parent cb30bf0 commit 5b4f7bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function drawInputButtons() {
const button = document.createElement("button");
button.type = "button";
button.innerText = consonant;
button.className = "col input-button";
button.className = "col btn btn-secondary input-button";
button.onclick = onButtonClick;

consonantInputButtonArea.appendChild(button);
Expand All @@ -41,7 +41,7 @@ function drawInputButtons() {
const button = document.createElement("button");
button.type = "button";
button.innerText = vowel;
button.className = "col input-button";
button.className = "col btn btn-secondary input-button";
button.onclick = onButtonClick;

vowelInputButtonArea.appendChild(button);
Expand Down

0 comments on commit 5b4f7bd

Please sign in to comment.