diff --git a/src/gui/userButton.js b/src/gui/userButton.js index 31097d3502055801adad7376c6e37a8b8d983027..7db7e2d0c29027c11d29c1d2cf25ffb3af216cbb 100644 --- a/src/gui/userButton.js +++ b/src/gui/userButton.js @@ -1,7 +1,6 @@ globalThis.userButton = function(nextButton = V.nextButton, nextLink = V.nextLink) { const el = document.createElement("span"); el.id = "next-button-wrapper"; // We must always have a named element so we have something to refresh even if the button is hidden for a scene - el.style.fontWeight = "bold"; const _Pass = passage(); let link; @@ -11,6 +10,7 @@ globalThis.userButton = function(nextButton = V.nextButton, nextLink = V.nextLin "END WEEK", () => endWeek() ); + link.style.fontWeight = "bold"; link.id = "endWeekButton"; el.append(link); el.append(" "); @@ -24,6 +24,7 @@ globalThis.userButton = function(nextButton = V.nextButton, nextLink = V.nextLin nextButton, nextLink ); + link.style.fontWeight = "bold"; link.id = "nextButton"; el.append(link); el.append(" ");