mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
Merge pull request #89 from coryzibell/master
Add module to hide help button
This commit is contained in:
commit
53a1638549
@ -187,6 +187,14 @@ these include:
|
||||
|
||||

|
||||
|
||||
### 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
16
mods/hide-help/mod.js
Normal 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',
|
||||
};
|
3
mods/hide-help/styles.css
Normal file
3
mods/hide-help/styles.css
Normal file
@ -0,0 +1,3 @@
|
||||
.notion-help-button {
|
||||
display: none !important;
|
||||
}
|
Loading…
Reference in New Issue
Block a user