Compare commits

...

2 Commits

Author SHA1 Message Date
df19a55ff7 add dark mode in BaseDescriptionListItem 2023-03-27 15:24:15 +05:30
5504aa1c41 add dark mode in BaseDivider 2023-03-27 15:23:42 +05:30
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
{{ label }}
</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 }}
<slot />

View File

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