From 4cde21c0e8b396fd727a3630fa018730af72356f Mon Sep 17 00:00:00 2001 From: Sacha STAFYNIAK Date: Sat, 12 Aug 2023 02:34:46 +0200 Subject: [PATCH] fix(list): remove liststyle from list-base --- src/plugins/components/list.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/components/list.ts b/src/plugins/components/list.ts index 6a10392..201506b 100644 --- a/src/plugins/components/list.ts +++ b/src/plugins/components/list.ts @@ -6,7 +6,6 @@ const defaultlistConfig = { ul: 'disc', ol: 'decimal', base: { - list: 'disc', textMarker: 'muted-500', textMarkerDark: 'muted-400', text: 'slate-700', @@ -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`]: {