fix sidebar and table data link in dark mode color (#1259)

* fix sidebar and table data link in dark mode color

* add dark mode toggle in installation step
This commit is contained in:
Yash Kanakiya
2023-08-22 11:18:02 +05:30
committed by GitHub
parent f4bc78ce98
commit 45aaee72d8
17 changed files with 24 additions and 21 deletions

View File

@ -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"
@ -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: {
@ -40,6 +42,7 @@ export default {
step_6: Step6AccountSettings,
step_7: Step7CompanyInfo,
step_8: Step8CompanyPreferences,
LightDarkButton
},
setup() {