diff --git a/packages/components/src/components/AppGlobalStyles.web.tsx b/packages/components/src/components/AppGlobalStyles.web.tsx index 655228f9..d592310b 100644 --- a/packages/components/src/components/AppGlobalStyles.web.tsx +++ b/packages/components/src/components/AppGlobalStyles.web.tsx @@ -31,15 +31,6 @@ function getStyles(params: { theme: Theme }) { .join('\n')} background-color:${t.backgroundColor}; } - - a:not(.icon):hover, a:not(.icon):hover *:not(.icon) { - ${ - t.isDark - ? `color: ${lighten(1, t.foregroundColor)} !important;` - : `color: ${darken(1, t.foregroundColor)} !important;` - } - transition: none 0s !important; - } ` } diff --git a/packages/web/src/index.css b/packages/web/src/index.css index 44f2b115..593c9296 100644 --- a/packages/web/src/index.css +++ b/packages/web/src/index.css @@ -34,6 +34,10 @@ body { -moz-osx-font-smoothing: grayscale; } +a:hover, a:hover * { + text-decoration: underline; +} + input:focus { outline: none !important; }