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
View File
@@ -4,6 +4,7 @@ const urlParams = new URLSearchParams(queryString);
const settingsJson = urlParams.get("settingsJson") || "";
const widgetURL = urlParams.get("widgetURL") || "";
const showUnmuteIndicator = GetBooleanParam("showUnmuteIndicator", false);
const useStreamerBot = GetBooleanParam("usesStreamerBot", false);
// Page elements
const widgetUrlInputWrapper = document.getElementById('widgetUrlInputWrapper');
@@ -318,6 +319,9 @@ function RefreshWidgetPreview() {
}
function UpdateStreamerBotConnection() {
if (!useStreamerBot)
return;
let addressElement = document.getElementById('address');
let portElement = document.getElementById('port');