Skip to content

Commit

Permalink
Add font-bold
Browse files Browse the repository at this point in the history
  • Loading branch information
maggick committed Aug 4, 2023
1 parent e7e676e commit 2bd7880
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ async function populateUI(albums: (Track|Album)[], done: Boolean, type: string)
}
status += " added to your queue.";
}
title.appendChild(document.createTextNode(status));
title.appendChild(document.createTextNode(status));
title.setAttribute('class', 'font-bold');

var ihm_loading = document.createElement('span');
const html_albums = document.getElementById('albums')!;
Expand Down

0 comments on commit 2bd7880

Please sign in to comment.