Skip to content

Commit

Permalink
fix: fix background and border colors in listbox options
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Dec 20, 2023
1 parent 470e418 commit 19aefa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/components/listbox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export default plugin.withOptions(
//Listbox:options
[`.${prefix}listbox-options`]: {
//Background
[`@apply dark:bg-${config.color.defaultContrast.option.background.light} bg-${config.color.defaultContrast.option.background.dark}`]:
[`@apply bg-${config.color.defaultContrast.option.background.light} dark:bg-${config.color.defaultContrast.option.background.dark}`]:
{},
//Border
[`@apply border border-${config.color.defaultContrast.option.border.light} dark:border-${config.color.defaultContrast.option.border.dark}`]:
Expand Down Expand Up @@ -456,7 +456,7 @@ export default plugin.withOptions(
//Listbox:options
[`.${prefix}listbox-options`]: {
//Background
[`@apply dark:bg-${config.color.mutedContrast.option.background.light} bg-${config.color.mutedContrast.option.background.dark}`]:
[`@apply bg-${config.color.mutedContrast.option.background.light} dark:bg-${config.color.mutedContrast.option.background.dark}`]:
{},
//Border
[`@apply border border-${config.color.mutedContrast.option.border.light} dark:border-${config.color.mutedContrast.option.border.dark}`]:
Expand Down

0 comments on commit 19aefa7

Please sign in to comment.