Fixed formatting
This commit is contained in:
parent
0158668d91
commit
fcf66d85ba
|
@ -201,7 +201,8 @@ input[type="radio"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.toggle_label {
|
.toggle_label {
|
||||||
min-width: 100%;;
|
min-width: 100%;
|
||||||
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,4 +46,4 @@
|
||||||
--fg-que: rgb(248, 214, 41);
|
--fg-que: rgb(248, 214, 41);
|
||||||
--bg-nxt: rgb(74, 91, 96);
|
--bg-nxt: rgb(74, 91, 96);
|
||||||
--fg-nxt: rgb(205, 200, 194);
|
--fg-nxt: rgb(205, 200, 194);
|
||||||
}
|
}
|
|
@ -5,11 +5,11 @@ function initToggle() {
|
||||||
function switchTheme(e) {
|
function switchTheme(e) {
|
||||||
if (e.target.checked) {
|
if (e.target.checked) {
|
||||||
document.documentElement.setAttribute('data-theme', 'dark');
|
document.documentElement.setAttribute('data-theme', 'dark');
|
||||||
localStorage.setItem('theme', 'dark'); //add this
|
localStorage.setItem('theme', 'dark');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
document.documentElement.setAttribute('data-theme', 'light');
|
document.documentElement.setAttribute('data-theme', 'light');
|
||||||
localStorage.setItem('theme', 'light'); //add this
|
localStorage.setItem('theme', 'light');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,4 +31,4 @@ function initToggle() {
|
||||||
document.querySelectorAll('.toggle').forEach(function (el) {
|
document.querySelectorAll('.toggle').forEach(function (el) {
|
||||||
el.style.display = 'unset';
|
el.style.display = 'unset';
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,4 +71,5 @@
|
||||||
initToggle();
|
initToggle();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue