Fixed formatting
This commit is contained in:
parent
0158668d91
commit
fcf66d85ba
|
@ -201,7 +201,8 @@ input[type="radio"] {
|
|||
}
|
||||
|
||||
.toggle_label {
|
||||
min-width: 100%;;
|
||||
min-width: 100%;
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -5,11 +5,11 @@ function initToggle() {
|
|||
function switchTheme(e) {
|
||||
if (e.target.checked) {
|
||||
document.documentElement.setAttribute('data-theme', 'dark');
|
||||
localStorage.setItem('theme', 'dark'); //add this
|
||||
localStorage.setItem('theme', 'dark');
|
||||
}
|
||||
else {
|
||||
document.documentElement.setAttribute('data-theme', 'light');
|
||||
localStorage.setItem('theme', 'light'); //add this
|
||||
localStorage.setItem('theme', 'light');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -71,4 +71,5 @@
|
|||
initToggle();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue