diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/globalStyles.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/globalStyles.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/globalStyles.tsx b/packages/dev-tools-pages/ts/globalStyles.tsx index 16adc61a7..270929123 100644 --- a/packages/dev-tools-pages/ts/globalStyles.tsx +++ b/packages/dev-tools-pages/ts/globalStyles.tsx @@ -50,11 +50,16 @@ const BaseStyles = createGlobalStyle` } a { + color: inherit; + text-decoration: none; + } + + a:not([class]) { color: ${(props: any) => props.colors.type}; text-decoration: none; &:hover { - color: red; //what should this be? + text-decoration: underline; } } |