Merge pull request #89 from coryzibell/master

Add module to hide help button
This commit is contained in:
Tom 2020-09-07 08:23:32 +10:00 committed by GitHub
commit 53a1638549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 0 deletions

View File

@ -187,6 +187,14 @@ these include:
![](https://user-images.githubusercontent.com/16874139/90522144-b6768080-e1ae-11ea-8150-527c1f70f0e7.png)
### hide help button
**tags:** #extension
**description:** hide the help button if you don't need it
**author**: [coryzibell](https://github.com/coryzibell/)
### neutral
**tags:** #theme #dark

16
mods/hide-help/mod.js Normal file
View File

@ -0,0 +1,16 @@
/*
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (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',
};

View File

@ -0,0 +1,3 @@
.notion-help-button {
display: none !important;
}