diff --git a/repo/core/client.js b/repo/core/client.js
index a20f985..25744ba 100644
--- a/repo/core/client.js
+++ b/repo/core/client.js
@@ -136,8 +136,12 @@ module.exports = (store, __exports) => {
           : list[0].target.style.width;
       if (new_sidebar_width !== 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') }]);
   }
 };
diff --git a/repo/emoji-sets/mod.js b/repo/emoji-sets/mod.js
index 01f72dc..92bc582 100644
--- a/repo/emoji-sets/mod.js
+++ b/repo/emoji-sets/mod.js
@@ -84,6 +84,7 @@ module.exports = {
                 })`
               );
               el.style.setProperty('background-size', 'contain');
+              el.style.setProperty('opacity', '1');
             });
             tweaked = true;
           }
diff --git a/repo/night-shift/mod.js b/repo/night-shift/mod.js
index 2b273fa..51d5702 100644
--- a/repo/night-shift/mod.js
+++ b/repo/night-shift/mod.js
@@ -11,7 +11,7 @@ module.exports = {
   tags: ['extension', 'theme'],
   name: 'night shift',
   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',
   author: 'dragonwocky',
   hacks: {