We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a7c904 commit 6dd344dCopy full SHA for 6dd344d
1 file changed
tool/web-app/script.js
@@ -1,4 +1,7 @@
1
document.addEventListener('DOMContentLoaded', () => {
2
+ // Enable dark mode by default
3
+ document.body.classList.add('dark-mode');
4
+
5
const steps = document.querySelectorAll('.step');
6
let currentStep = 0;
7
@@ -393,4 +396,4 @@ advToggle.addEventListener('click', function () {
393
396
advToggle.setAttribute('aria-expanded', !expanded);
394
397
advSettings.style.display = expanded ? 'none' : 'block';
395
398
advToggle.textContent = expanded ? 'Show Advanced Settings' : 'Hide Advanced Settings';
-});
399
+});
0 commit comments