more tailwind
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user