Compare commits

..

2 Commits

Author SHA1 Message Date
2e93082282 add dark theme in blade file 2023-03-20 11:45:14 +05:30
ca55221c4f add dark mode in sidebar and header 2023-03-17 18:25:17 +05:30

View File

@ -19,7 +19,7 @@
]"
aria-hidden="true"
>
<span class="rounded-full bg-white w-1.5 h-1.5" :class="{ 'bg-white': checked }"/>
<span class="rounded-full bg-white w-1.5 h-1.5" />
</span>
<div class="flex flex-col ml-3">
<RadioGroupLabel
@ -70,7 +70,7 @@ const props = defineProps({
},
unCheckedStateClass: {
type: String,
default: 'bg-white dark:bg-transparent',
default: 'bg-white ',
},
optionGroupActiveStateClass: {
type: String,
@ -78,16 +78,16 @@ const props = defineProps({
},
checkedStateLabelClass: {
type: String,
default: 'text-primary-900 dark:text-primary-400',
default: 'text-primary-900 ',
},
unCheckedStateLabelClass: {
type: String,
default: 'text-gray-900 dark:text-white',
default: 'text-gray-900',
},
optionGroupClass: {
type: String,
default:
'h-4 w-4 mt-0.5 cursor-pointer rounded-full border flex items-center justify-center dark:border-gray-600',
'h-4 w-4 mt-0.5 cursor-pointer rounded-full border flex items-center justify-center',
},
optionGroupLabelClass: {
type: String,