From f304f78177c874241e4a98304e8ea53a5ba98578 Mon Sep 17 00:00:00 2001 From: Cory Zibell Date: Sun, 6 Sep 2020 18:17:41 -0400 Subject: [PATCH] Add hide-help module content --- mods/hide-help/mod.js | 16 ++++++++++++++++ mods/hide-help/styles.css | 3 +++ 2 files changed, 19 insertions(+) diff --git a/mods/hide-help/mod.js b/mods/hide-help/mod.js index e69de29..3d5a69e 100644 --- a/mods/hide-help/mod.js +++ b/mods/hide-help/mod.js @@ -0,0 +1,16 @@ +/* + * notion-enhancer + * (c) 2020 dragonwocky (https://dragonwocky.me/) + * under the MIT license + */ + +'use strict'; + +module.exports = { + id: 'd4ebe9f3-974a-4c01-a6a9-94bc4296851d', + tags: ['extension'], + name: 'hide help button', + desc: 'hide help button if you don\'t need it.', + version: '1.0.0', + author: 'coryzibell', +}; diff --git a/mods/hide-help/styles.css b/mods/hide-help/styles.css index e69de29..26defb3 100644 --- a/mods/hide-help/styles.css +++ b/mods/hide-help/styles.css @@ -0,0 +1,3 @@ +.notion-help-button { + display: none !important; +} \ No newline at end of file