Merge pull request #351 from timlrx/fix/prose-a-hover

fix: hover state for a tag in prose
This commit is contained in:
Timothy 2022-01-23 16:49:37 +08:00 committed by GitHub
commit e6db5e62cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ module.exports = {
a: {
color: theme('colors.primary.500'),
'&:hover': {
color: theme('colors.primary.600'),
color: `${theme('colors.primary.600')} !important`,
},
code: { color: theme('colors.primary.400') },
},
@ -97,7 +97,7 @@ module.exports = {
a: {
color: theme('colors.primary.500'),
'&:hover': {
color: theme('colors.primary.400'),
color: `${theme('colors.primary.400')} !important`,
},
code: { color: theme('colors.primary.400') },
},