Skip to content

Commit

Permalink
fix(list): remove liststyle from list-base
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Aug 12, 2023
1 parent 22d4824 commit 4cde21c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plugins/components/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const defaultlistConfig = {
ul: 'disc',
ol: 'decimal',
base: {
list: 'disc',
textMarker: 'muted-500',
textMarkerDark: 'muted-400',
text: 'slate-700',
Expand Down Expand Up @@ -39,7 +38,7 @@ export default plugin.withOptions(
[`@apply list-${config.ol}`]: {},
},
[`&.${prefix}list-base`]: {
[`@apply list-${config.base.list} space-y-1 marker:text-${config.base.textMarker} dark:marker:text-${config.base.textMarkerDark} font-${config.base.font} text-${config.base.text} dark:text-${config.base.textDark}`]:
[`@apply space-y-1 marker:text-${config.base.textMarker} dark:marker:text-${config.base.textMarkerDark} font-${config.base.font} text-${config.base.text} dark:text-${config.base.textDark}`]:
{},
},
[`&.${prefix}list-media`]: {
Expand Down

0 comments on commit 4cde21c

Please sign in to comment.