upstream #1
@ -2,10 +2,14 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
.task-list-item:before {
|
.task-list-item::before {
|
||||||
@apply hidden;
|
@apply hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-list-item {
|
||||||
|
@apply list-none;
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
|
@ -62,10 +62,10 @@ module.exports = {
|
|||||||
paddingBottom: '2px',
|
paddingBottom: '2px',
|
||||||
borderRadius: '0.25rem',
|
borderRadius: '0.25rem',
|
||||||
},
|
},
|
||||||
'code:before': {
|
'code::before': {
|
||||||
content: 'none',
|
content: 'none',
|
||||||
},
|
},
|
||||||
'code:after': {
|
'code::after': {
|
||||||
content: 'none',
|
content: 'none',
|
||||||
},
|
},
|
||||||
details: {
|
details: {
|
||||||
@ -77,11 +77,18 @@ module.exports = {
|
|||||||
borderRadius: '0.25rem',
|
borderRadius: '0.25rem',
|
||||||
},
|
},
|
||||||
hr: { borderColor: theme('colors.gray.200') },
|
hr: { borderColor: theme('colors.gray.200') },
|
||||||
'ol li:before': {
|
'ol li::before': {
|
||||||
fontWeight: '600',
|
fontWeight: '600',
|
||||||
color: theme('colors.gray.500'),
|
color: theme('colors.gray.500'),
|
||||||
},
|
},
|
||||||
'ul li:before': {
|
'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'),
|
backgroundColor: theme('colors.gray.500'),
|
||||||
},
|
},
|
||||||
strong: { color: theme('colors.gray.600') },
|
strong: { color: theme('colors.gray.600') },
|
||||||
@ -128,11 +135,18 @@ module.exports = {
|
|||||||
backgroundColor: theme('colors.gray.800'),
|
backgroundColor: theme('colors.gray.800'),
|
||||||
},
|
},
|
||||||
hr: { borderColor: theme('colors.gray.700') },
|
hr: { borderColor: theme('colors.gray.700') },
|
||||||
'ol li:before': {
|
'ol li::before': {
|
||||||
fontWeight: '600',
|
fontWeight: '600',
|
||||||
color: theme('colors.gray.400'),
|
color: theme('colors.gray.400'),
|
||||||
},
|
},
|
||||||
'ul li:before': {
|
'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'),
|
backgroundColor: theme('colors.gray.400'),
|
||||||
},
|
},
|
||||||
strong: { color: theme('colors.gray.100') },
|
strong: { color: theme('colors.gray.100') },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user