Compare commits

..

1 Commits

Author SHA1 Message Date
150380791f fix password eye icon and minor fix in dark mode 2023-08-22 17:43:49 +05:30

View File

@ -16,13 +16,6 @@ defineProps({
const globalStore = useGlobalStore()
const isDark = ref(
localStorage.getItem('theme') === 'dark'
|| document.documentElement.classList.contains('dark'),
)
globalStore.isDarkModeOn = isDark
const enabled = computed({
get: () => globalStore.isDarkModeOn,
set: (value) => {