diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-29 06:07:45 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-29 06:07:45 +0200 |
commit | e0c6d0ec5091536734288ab06ad4587b43387d2f (patch) | |
tree | 6716d07880f76e88999b3c03389e71886c4b9a59 /pages/_app.tsx | |
parent | 29fbfba2db6fdca308a9f88c3e757b2a36367955 (diff) |
handled all the link color cases
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r-- | pages/_app.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx index c2edb69..f8ff942 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -110,7 +110,6 @@ function SubApp(props: any) { const missingColor = d3int.interpolate(emacsTheme.base1, emacsTheme.base2)(0.2) const borderColor = getBorderColor() const theme = useMemo(() => { - console.log('ii') return { colors: { white: emacsTheme.bg, @@ -171,6 +170,8 @@ function SubApp(props: any) { }, ghost: { color: highlightColor + '.500', + _hover: { bg: `inherit`, border: '1px solid', borderColor: highlightColor + '.500' }, + _active: { color: `inherit`, bg: highlightColor + '.500' }, }, }, }, |