Skip to content

Commit

Permalink
#402 Remove underlining for links (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
west270 authored Jun 22, 2023
1 parent b693441 commit aa63cf7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/UI/Theme/Theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ function getTheme(themeName: SupportedColorScheme) {
styleOverrides: {
a: {
color: d3,
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline'
},
},
span: {
fontSize: 18,
Expand Down Expand Up @@ -55,6 +59,10 @@ function getTheme(themeName: SupportedColorScheme) {
styleOverrides: {
a: {
color: l3,
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline'
},
},
span: {
fontSize: 18,
Expand Down

0 comments on commit aa63cf7

Please sign in to comment.