Add dark mode in BaseDivider & BaseDescriptionList (#1194)

* add dark mode in BaseDivider

* add dark mode in BaseDescriptionListItem
This commit is contained in:
Yash Kanakiya
2023-03-28 17:34:54 +05:30
committed by GitHub
parent 5aa7decdbe
commit 3d5732ee26
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
{{ label }} {{ label }}
</BaseLabel> </BaseLabel>
<p class="text-sm font-bold leading-5 text-black non-italic"> <p class="text-sm font-bold leading-5 text-black non-italic dark:text-white">
{{ value }} {{ value }}
<slot /> <slot />

View File

@ -1,3 +1,3 @@
<template> <template>
<hr class="w-full text-gray-300" /> <hr class="w-full text-gray-300 dark:bg-gray-600" />
</template> </template>