diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-11 21:27:17 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-11 21:27:17 +0200 |
commit | 58b7030d45370072dee25214748670d6413343a9 (patch) | |
tree | 9632df7273415f4b197413c45ad11563af32d53a /pages/_app.tsx | |
parent | 89be3b67b2d10d35d72b5c54e1e166beeeef3095 (diff) | |
parent | 6e3dcf585c35620c6804f3c208e6882c29dfc17e (diff) |
Merge pull request #101 from org-roam/sidebar
feat: Add file preview functionality
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r-- | pages/_app.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx index a9a00f9..9833717 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -20,7 +20,6 @@ function MyApp({ Component, pageProps }: AppProps) { if (isInitialized) { localStorage.setItem('colorTheme', JSON.stringify(emacsTheme)) } - console.log(emacsTheme) }, [emacsTheme]) useEffect(() => { @@ -154,6 +153,11 @@ function SubApp(props: any) { _hover: { bg: `inherit`, border: '1px solid', borderColor: highlightColor }, _active: { color: `inherit`, bg: highlightColor }, }, + subtle: { + color: 'gray.800', + _hover: { bg: `inherit`, color: highlightColor }, + _active: { color: `inherit`, bg: borderColor }, + }, }, }, Accordion: { |