more tailwind

This commit is contained in:
2026-02-04 13:10:34 +00:00
parent 9167946ecc
commit 57a7f5e545
4 changed files with 41 additions and 43 deletions

View File

@@ -13,12 +13,16 @@ const parentPath = computed(() => {
return segments.length ? "/" + segments.join("/") : null;
}
});
const inHome = computed(() => {
return route.path == "/";
});
</script>
<template>
<nav class="flex flex-col">
<RouterLink class="bdr-2 bg-bg_primary" to="/">
<a class="text-3xl">HOME</a>
<nav class="flex flex-row w-fit">
<RouterLink class="bdr-2 bg-bg_primary" to="/" v-if="!inHome">
<a>HOME</a>
</RouterLink>
<RouterLink
class="bdr-2 bg-bg_primary"

View File

@@ -62,7 +62,7 @@ function playFinishedSound() {
</script>
<template>
<div class="flex flex-col">
<div class="flex flex-col gap-1 p-1">
<h4 class="items-center">Timer</h4>
<!-- Min input and Second input-->
<div v-if="finished && paused" class="flex flex-row">