newest version of timetracker

This commit is contained in:
Daniel Goc
2026-03-11 11:46:25 +01:00
parent 9ef4bb219b
commit 5921987ad7
32 changed files with 422 additions and 275 deletions

View File

@@ -62,7 +62,7 @@ const PrivacyComponent = computed(() =>
<component :is="TermsComponent" />
</template>
<template #footer>
<UButton @click="showTherms = false" class="mx-auto px-12">close</UButton>
<UButton @click="showTherms = false" class="mx-auto px-12">{{ $t('general.close') }}</UButton>
</template>
</UDrawer>
<!-- PrivacyPolicyView -->
@@ -71,7 +71,7 @@ const PrivacyComponent = computed(() =>
<component :is="PrivacyComponent" />
</template>
<template #footer>
<UButton @click="showPrivacy = false" class="mx-auto px-12">close</UButton>
<UButton @click="showPrivacy = false" class="mx-auto px-12">{{ $t('general.close') }}</UButton>
</template>
</UDrawer>
<div class="h-[100vh] flex flex-col items-center justify-center px-4 sm:px-6 lg:px-8">
@@ -120,7 +120,7 @@ const PrivacyComponent = computed(() =>
<!-- Divider -->
<div class="flex items-center gap-3 my-1">
<div class="flex-1 h-px bg-gray-200 dark:bg-gray-700" />
<span class="text-xs text-gray-400 dark:text-gray-500">or</span>
<span class="text-xs text-gray-400 dark:text-gray-500">{{ $t('general.or') }}</span>
<div class="flex-1 h-px bg-gray-200 dark:bg-gray-700" />
</div>