Fixed text alignment for 'Compact' theme

This commit is contained in:
nutty
2026-07-23 21:14:12 +10:00
parent 191e0ab504
commit f4406bbd45
6 changed files with 64 additions and 78 deletions
+4 -1
View File
@@ -15,9 +15,12 @@ settingsJSON = "?settingsJson=" + baseURL + "settings.json";
const lastSlashIndex = baseURL.lastIndexOf("/");
let widgetURL = "&widgetURL=" + baseURL.replace("/settings", "");
const usesStreamerBot = "&usesStreamerBot=false";
console.debug("Window Ref: " + window.location.href);
console.debug("Base URL: " + baseURL);
console.debug("Settings JSON: " + settingsJSON);
console.debug("Widget URL: " + widgetURL);
console.debug("Uses Streamer Bot: " + usesStreamerBot);
widgetContainer.src = settingsPageURL + settingsJSON + widgetURL;
widgetContainer.src = settingsPageURL + settingsJSON + widgetURL + usesStreamerBot;