Fix visual inconsistencies.

This commit is contained in:
天クマ 2026-02-08 20:52:23 -03:00
commit 01b1f99b16
4 changed files with 72 additions and 2 deletions

View file

@ -1,11 +1,14 @@
// This script handles the playback of music in the header's miniplayer ;)
const body = document.querySelector("body");
document.getElementById("music").innerHTML = `
const musicdiv = document.getElementById("music");
musicdiv.innerHTML = `
<img src="/static/images/gears.svg" class="optionsToggle invertedc">
<img src="/static/images/sound-on.png" id="sound">
<select name="song" id="songSelection"></select>
`
const linksHelper = document.getElementById("linksHelper");
linksHelper.insertBefore(document.createElement("hs"), document.getElementById("headerLinks"));
const songs = [
{ file: "Velkommen.mp3", name: 'Velkommen', artwork: "velkommen.jpg" },