diff options
| author | Teddy Wing | 2019-05-01 18:43:02 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-05-01 18:43:02 +0200 |
| commit | 496ac03b0d6afb28db09998eb9944db2102ad49e (patch) | |
| tree | ec8debe3597b29e0cf06a16c626dcd8efe013505 | |
| parent | 95b1eb43688c69bb0d839c918fb5a7768713f684 (diff) | |
| download | muttagen-496ac03b0d6afb28db09998eb9944db2102ad49e.tar.bz2 | |
style.ts: Hide the left sidebar by default
| -rw-r--r-- | src/style.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/style.ts b/src/style.ts index 1ef58b0..e560f93 100644 --- a/src/style.ts +++ b/src/style.ts @@ -4,6 +4,7 @@ type GmailCSSDefinitions = { [selector in g.GmailCSSClass]: string }; var css: GmailCSSDefinitions = {}; css[g.TOOLS_PANEL] = 'display: none;'; +css[g.SIDEBAR] = 'display: none;'; css[g.MESSAGE_PAGER] = 'filter: invert(100%);'; function construct_css(css: GmailCSSDefinitions): string { |
