add dark mode in wizard steps (#1206)

* add dark mode in wizard steps

* step navigation dark mode issue fixed
This commit is contained in:
Payal Dholakiya
2023-03-30 18:43:37 +05:30
committed by GitHub
parent deb039ba02
commit 18dc88682c
9 changed files with 22 additions and 38 deletions

View File

@ -1,16 +1,7 @@
<template>
<div
:class="containerClass"
class="
relative
after:bg-gray-200
after:absolute
after:transform
after:top-1/2
after:-translate-y-1/2
after:h-2
after:w-full
"
class="relative after:bg-gray-200 dark:after:bg-gray-700 after:absolute after:transform after:top-1/2 after:-translate-y-1/2 after:h-2 after:w-full"
>
<a
v-for="(number, index) in steps"
@ -58,21 +49,21 @@ export default {
},
currentStepClass: {
type: String,
default: 'bg-white border-primary-500',
default: 'bg-white border-primary-500 dark:bg-gray-600 dark:border-gray-500 dark:border-primary-600',
},
nextStepClass: {
type: String,
default: 'border-gray-200 bg-white',
default: 'border-gray-200 bg-white dark:bg-gray-600 dark:border-gray-500',
},
previousStepClass: {
type: String,
default:
'bg-primary-500 border-primary-500 flex justify-center items-center',
'bg-primary-500 dark:bg-primary-600 border-primary-500 flex justify-center items-center dark:border-primary-600',
},
iconClass: {
type: String,
default:
'flex items-center justify-center w-full h-full text-sm font-black text-center text-white',
'flex items-center justify-center w-full h-full text-sm font-black text-center text-white dark:text-gray-400',
},
},

View File

@ -9,6 +9,7 @@
</p>
</div>
<slot />
<BaseDarkHighlight class="z-[-1]"/>
</div>
</template>
@ -25,16 +26,16 @@ const props = defineProps({
stepContainerClass: {
type: String,
default:
'w-full p-8 mb-8 bg-white border border-gray-200 border-solid rounded',
'w-full p-8 mb-8 bg-white border border-gray-200 border-solid rounded dark:from-gray-700/70 dark:to-gray-800/70 dark:bg-transparent dark:backdrop-blur-xl dark:shadow-glass dark:border dark:border-white/10',
},
stepTitleClass: {
type: String,
default: 'text-2xl not-italic font-semibold leading-7 text-black',
default: 'text-2xl not-italic font-semibold leading-7 text-black dark:text-white',
},
stepDescriptionClass: {
type: String,
default:
'w-full mt-2.5 mb-8 text-sm not-italic leading-snug text-gray-500 lg:w-7/12 md:w-7/12 sm:w-7/12',
'w-full mt-2.5 mb-8 text-sm not-italic leading-snug text-gray-500 dark:text-gray-300 lg:w-7/12 md:w-7/12 sm:w-7/12',
},
})
</script>