Browse Source

fix(ui): Use link hover color on focus (#69117)

Evan Purkhiser 10 months ago
parent
commit
7586900ac0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      static/app/styles/global.tsx

+ 1 - 0
static/app/styles/global.tsx

@@ -19,6 +19,7 @@ const styles = (theme: Theme, isDark: boolean) => css`
 
   a {
     color: ${theme.linkColor};
+    &:focus-visible,
     &:hover {
       color: ${theme.linkHoverColor};
     }