Change client-only tag position

This commit is contained in:
2024-02-26 14:44:50 +01:00
parent 0b5d4c59f9
commit 331f08ba8f
3 changed files with 59 additions and 59 deletions

View File

@@ -1,13 +1,11 @@
<template> <template>
<header class="z-30 sticky top-0 left-0 flex justify-center w-full"> <header class="z-30 sticky top-0 left-0 flex justify-center w-full">
<div class="w-full px-4 sm:px-6 lg:px-8 sm:mx-8 max-w-7xl py-4 flex justify-between items-center bg-white dark:bg-zinc-900 border-b border-zinc-100 dark:border-zinc-300/10"> <div class="w-full px-4 sm:px-6 lg:px-8 sm:mx-8 max-w-7xl py-4 flex justify-between items-center bg-white dark:bg-zinc-900 border-b border-zinc-100 dark:border-zinc-300/10">
<ClientOnly>
<Logo /> <Logo />
<NavBar /> <NavBar />
<div class="flex gap-2 items-center"> <ClientOnly fallback-tag="div" class="flex gap-2 items-center">
<ThemePicker /> <ThemePicker />
<MobileNavBar /> <MobileNavBar />
</div>
</ClientOnly> </ClientOnly>
</div> </div>
</header> </header>

View File

@@ -62,9 +62,11 @@ useIntervalFn(async () => await refresh(), 5000)
</div> </div>
<template #footer> <template #footer>
<div class="flex items-center justify-end w-full"> <div class="flex items-center justify-end w-full">
<ClientOnly>
<p v-if="codingActivity" class="text-subtitle text-xs w-1/2"> <p v-if="codingActivity" class="text-subtitle text-xs w-1/2">
Started the {{ formatDate(codingActivity.timestamps.start) }} Started the {{ formatDate(codingActivity.timestamps.start) }}
</p> </p>
</ClientOnly>
<div class="flex items-center space-x-1 w-1/2 justify-end"> <div class="flex items-center space-x-1 w-1/2 justify-end">
<p class="text-subtitle text-xs"> <p class="text-subtitle text-xs">
powered by powered by

View File

@@ -10,7 +10,6 @@ const CardUi = {
</script> </script>
<template> <template>
<ClientOnly>
<UCard class="flex flex-col justify-between" :ui="CardUi"> <UCard class="flex flex-col justify-between" :ui="CardUi">
<div class="flex items-center gap-x-4 h-full"> <div class="flex items-center gap-x-4 h-full">
<p <p
@@ -46,9 +45,11 @@ const CardUi = {
</div> </div>
<template #footer> <template #footer>
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">
<ClientOnly>
<p v-if="stats" class="text-subtitle text-xs w-1/2"> <p v-if="stats" class="text-subtitle text-xs w-1/2">
Started {{ useTimeAgo(new Date(stats.coding.data.range.start)).value }}, the {{ useDateFormat(new Date(stats.coding.data.range.start), 'Do MMMM YYYY').value }} Started {{ useTimeAgo(new Date(stats.coding.data.range.start)).value }}, the {{ useDateFormat(new Date(stats.coding.data.range.start), 'Do MMMM YYYY').value }}
</p> </p>
</ClientOnly>
<div class="flex items-center justify-end space-x-1"> <div class="flex items-center justify-end space-x-1">
<p class="text-subtitle text-xs"> <p class="text-subtitle text-xs">
powered by powered by
@@ -66,7 +67,6 @@ const CardUi = {
</div> </div>
</template> </template>
</UCard> </UCard>
</ClientOnly>
</template> </template>
<style> <style>