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
3 changed files with 7 additions and 13 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>

View File

@ -1,8 +1,6 @@
<template>
<div
:class="success || info
? 'bg-white dark:border dark:border-white/10 dark:text-white dark:bg-gray-800/[.80] dark:shadow-glass dark:backdrop-blur-sm'
: 'bg-red-50 dark:bg-red-400/[.70] dark:shadow-glass dark:backdrop-blur-sm'"
:class="success || info ? 'bg-white' : 'bg-red-50'"
class="
max-w-sm
mb-3
@ -50,7 +48,7 @@
</svg>
<svg
v-if="error"
class="w-6 h-6 text-red-400 dark:text-white"
class="w-6 h-6 text-red-400"
fill="currentColor"
viewBox="0 0 24 24"
>
@ -64,9 +62,7 @@
<div class="flex-1 w-0 ml-3 text-left">
<p
:class="`text-sm leading-5 font-medium ${
success || info
? 'text-gray-900 dark:text-white'
: 'text-red-800 dark:text-white'
success || info ? 'text-gray-900' : 'text-red-800'
}`"
>
{{
@ -79,9 +75,7 @@
</p>
<p
:class="`mt-1 text-sm leading-5 ${
success || info
? 'text-gray-500 dark:text-gray-400'
: 'text-red-700 dark:text-red-200'
success || info ? 'text-gray-500' : 'text-red-700'
}`"
>
{{
@ -98,7 +92,7 @@
:class="
success || info
? ' text-gray-400 focus:text-gray-500'
: 'text-red-400 focus:text-red-500 dark:text-red-100'
: 'text-red-400 focus:text-red-500'
"
class="
inline-flex