Added links to show user how to connect Streamlabs, StreamElements etc. accounts

This commit is contained in:
nuttylmao
2025-04-01 17:41:06 +11:00
parent 2f8af0ad6f
commit a43a2db8d5
4 changed files with 20 additions and 15 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ document.addEventListener('DOMContentLoaded', () => {
const saveButton = document.getElementById('save-settings');
fetch(settingsJson)
//fetch('settings.json')
//fetch('../multichat-overlay/settings/settings.json')
.then(response => response.json())
.then(data => {
const groupedSettings = {};
@@ -42,7 +42,7 @@ document.addEventListener('DOMContentLoaded', () => {
if (setting.description) {
const description = document.createElement('p');
description.textContent = setting.description;
description.innerHTML = setting.description;
labelDescriptionDiv.appendChild(description);
}
+6 -1
View File
@@ -91,7 +91,8 @@ h2 {
display: block;
}
.setting-item p {
.setting-item p,
.setting-item a {
font-size: 0.9em;
font-weight: 300;
/* color: #666; */
@@ -99,6 +100,10 @@ h2 {
margin-bottom: 0;
}
a {
font-weight: 500 !important;
}
.setting-item-content {
display: flex;
align-items: center;