Skip to content

Commit fd34a4d

Browse files
committed
fixed checkbox styling in prose
1 parent 7831267 commit fd34a4d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tailwind.config.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,15 @@ module.exports = {
4747
'ul > li::before': {
4848
backgroundColor: 'var(--color-gray-500)',
4949
},
50+
'ul > li:has(input[type="checkbox"])': {
51+
listStyle: 'none',
52+
},
53+
'ul > li > input[type="checkbox"]:first-child': {
54+
margin: '0 16px 0 -32px !important',
55+
},
5056
},
5157
}
5258
}),
5359
},
5460
}
55-
}
61+
}

0 commit comments

Comments
 (0)