Remove ::before for lists in tailwind.config.js

This commit is contained in:
Alexander Zeilmann 2021-12-19 14:10:14 +01:00
parent c6e727b193
commit bb71ee40f5

View file

@ -77,17 +77,10 @@ module.exports = {
borderRadius: '0.25rem',
},
hr: { borderColor: theme('colors.gray.200') },
'ol li::before': {
fontWeight: '600',
color: theme('colors.gray.500'),
},
'ol li::marker': {
fontWeight: '600',
color: theme('colors.gray.500'),
},
'ul li::before': {
backgroundColor: theme('colors.gray.500'),
},
'ul li::marker': {
backgroundColor: theme('colors.gray.500'),
},
@ -135,17 +128,10 @@ module.exports = {
backgroundColor: theme('colors.gray.800'),
},
hr: { borderColor: theme('colors.gray.700') },
'ol li::before': {
fontWeight: '600',
color: theme('colors.gray.400'),
},
'ol li::marker': {
fontWeight: '600',
color: theme('colors.gray.400'),
},
'ul li::before': {
backgroundColor: theme('colors.gray.400'),
},
'ul li::marker': {
backgroundColor: theme('colors.gray.400'),
},