Skip to content

Commit

Permalink
Merge pull request #697 from sudhanshutech/theme/markdown
Browse files Browse the repository at this point in the history
Fix color for link element of markdown to adhere org based theme
  • Loading branch information
dragon-slayer875 authored Jul 31, 2024
2 parents b9a302e + a8e8562 commit 09366aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom/Markdown/style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { styled } from '@mui/material';
import { text } from '../../theme/colors/colors';

export const StyledMarkdown = styled('a')(({ theme }) => ({
color: theme.palette.text.brand,
color: theme.palette.background.brand?.default,
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline'
Expand Down

0 comments on commit 09366aa

Please sign in to comment.