Improvements and docker

This commit is contained in:
Krzysztof Płaczek
2025-09-18 15:37:41 +02:00
parent 9a66134469
commit 3046780f1b
15 changed files with 356 additions and 889 deletions

6
src/darkmodetoggle.js Normal file
View File

@@ -0,0 +1,6 @@
export default () => ({
mode(modeName) {
localStorage.theme = modeName;
document.documentElement.classList.toggle("dark", modeName==='dark');
}
});