Skip to content

Commit

Permalink
add dark mode toggle in installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
yashkanakiya committed Aug 21, 2023
1 parent a03d413 commit b2d1819
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions resources/scripts/admin/views/installation/Installation.vue
@@ -1,5 +1,6 @@
<template>
<div class="flex flex-col items-center justify-between w-full pt-10">
<LightDarkButton class="absolute z-10 top-2 right-2"/>
<img
id="logo-crater"
src="/img/crater-logo.png"
Expand Down Expand Up @@ -29,6 +30,7 @@ import Step7CompanyInfo from './Step7CompanyInfo.vue'
import Step8CompanyPreferences from './Step8CompanyPreferences.vue'
import { useInstallationStore } from '@/scripts/admin/stores/installation'
import { useRouter } from 'vue-router'
import LightDarkButton from '@/scripts/components/LightDarkButton.vue'
export default {
components: {
Expand All @@ -40,6 +42,7 @@ export default {
step_6: Step6AccountSettings,
step_7: Step7CompanyInfo,
step_8: Step8CompanyPreferences,
LightDarkButton
},
setup() {
Expand Down
Expand Up @@ -14,7 +14,7 @@
"
@click="onChange"
>
<BaseIcon v-if="!globalStore.isDarkModeOn" class="h-5 w-5 text-black" name="SunIcon" />
<BaseIcon v-if="!globalStore.isDarkModeOn" class="h-5 w-5 text-yellow-500" name="SunIcon" />
<BaseIcon v-else class="h-5 w-5 text-white" name="MoonIcon" />
</button>
</template>
Expand Down
6 changes: 3 additions & 3 deletions resources/scripts/customer/layouts/partials/TheSiteHeader.vue
Expand Up @@ -45,7 +45,7 @@
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<!-- Dark mode Toggle -->
<CustomerLightDarkButton/>
<LightDarkButton/>

<!-- Profile dropdown -->

Expand Down Expand Up @@ -151,7 +151,7 @@
</div>
</div>
<!-- Dark mode Toggle -->
<CustomerLightDarkButton/>
<LightDarkButton/>
</div>
<div class="mt-3 space-y-1">
<router-link
Expand All @@ -178,7 +178,7 @@ import { useRoute, useRouter } from 'vue-router'
import { ref, watch, computed } from 'vue'
import { useGlobalStore } from '@/scripts/customer/stores/global'
import MainLogo from '@/scripts/components/icons/MainLogo.vue'
import CustomerLightDarkButton from '@/scripts/components/CustomerLightDarkButton.vue'
import LightDarkButton from '@/scripts/components/LightDarkButton.vue'
import {
Disclosure,
DisclosureButton,
Expand Down

0 comments on commit b2d1819

Please sign in to comment.