readme additions + bugfixes

This commit is contained in:
dragonwocky 2020-08-19 00:13:14 +10:00
parent 05c7ca099f
commit 4ad8a9446b
3 changed files with 7 additions and 2 deletions

View File

@ -136,8 +136,12 @@ module.exports = (store, __exports) => {
: list[0].target.style.width; : list[0].target.style.width;
if (new_sidebar_width !== sidebar_width) { if (new_sidebar_width !== sidebar_width) {
sidebar_width = new_sidebar_width; sidebar_width = new_sidebar_width;
electron.ipcRenderer.sendToHost('enhancer:sidebar-width'); electron.ipcRenderer.sendToHost(
'enhancer:sidebar-width',
sidebar_width
);
} }
} }
setSidebarWidth([{ target: document.querySelector('.notion-sidebar') }]);
} }
}; };

View File

@ -84,6 +84,7 @@ module.exports = {
})` })`
); );
el.style.setProperty('background-size', 'contain'); el.style.setProperty('background-size', 'contain');
el.style.setProperty('opacity', '1');
}); });
tweaked = true; tweaked = true;
} }

View File

@ -11,7 +11,7 @@ module.exports = {
tags: ['extension', 'theme'], tags: ['extension', 'theme'],
name: 'night shift', name: 'night shift',
desc: desc:
'sync dark/light theme with the system (overrides normal theme setting)', 'sync dark/light theme with the system (overrides normal theme setting).',
version: '0.1.0', version: '0.1.0',
author: 'dragonwocky', author: 'dragonwocky',
hacks: { hacks: {