Skip to content
This repository was archived by the owner on Sep 11, 2021. It is now read-only.

Commit 15b8099

Browse files
authored
Merge pull request #2 from roylodder/patch-1
Add missing checkedColor options
2 parents a6e5abb + b15c70a commit 15b8099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ module.exports = function ({ addUtilities, addComponents, theme }) {
5858
borderColor: options.focusBorderColor,
5959
},
6060
'input[type=checkbox]:checked + &, input[type=checkbox]&:checked': {
61-
backgroundColor: 'currentColor',
62-
borderColor: 'currentColor',
61+
backgroundColor: options.checkedColor,
62+
borderColor: options.checkedColor,
6363
backgroundImage: `url("${svgToDataUri(options.checkboxIcon)}")`,
6464
backgroundSize: 'cover',
6565
backgroundPosition: 'center',

0 commit comments

Comments
 (0)