fix(calendar): tighten modal and attachment rendering
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
(function() {
|
||||
var stored = localStorage.getItem('oikos-theme');
|
||||
if (stored === 'dark') {
|
||||
document.documentElement.setAttribute('data-theme', 'dark');
|
||||
} else if (stored === 'light') {
|
||||
document.documentElement.setAttribute('data-theme', 'light');
|
||||
} else {
|
||||
document.documentElement.removeAttribute('data-theme');
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user