|
|
|
@ -1,4 +1,5 @@
|
|
|
|
<script lang="ts">
|
|
|
|
<script lang="ts">
|
|
|
|
|
|
|
|
import logo from "$lib/assets/wtasklogo192.png";
|
|
|
|
import { page } from "$app/stores";
|
|
|
|
import { page } from "$app/stores";
|
|
|
|
import Toast from "$lib/ui/feedback/Toast.svelte";
|
|
|
|
import Toast from "$lib/ui/feedback/Toast.svelte";
|
|
|
|
$: pathname = $page.url.pathname;
|
|
|
|
$: pathname = $page.url.pathname;
|
|
|
|
@ -16,7 +17,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
<header class="app-header">
|
|
|
|
<header class="app-header">
|
|
|
|
<div class="container row">
|
|
|
|
<div class="container row">
|
|
|
|
<a class="brand" href="/app" aria-label="Inicio">Tareas</a>
|
|
|
|
<a class="brand" href="/app" aria-label="Inicio"
|
|
|
|
|
|
|
|
><img src={logo} alt="Wtask" /></a
|
|
|
|
|
|
|
|
>
|
|
|
|
<nav class="nav">
|
|
|
|
<nav class="nav">
|
|
|
|
<a href="/app" class:active={$page.url.pathname === "/app"}>Tareas</a>
|
|
|
|
<a href="/app" class:active={$page.url.pathname === "/app"}>Tareas</a>
|
|
|
|
<a
|
|
|
|
<a
|
|
|
|
@ -169,6 +172,12 @@
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
font-size: 1.05rem;
|
|
|
|
font-size: 1.05rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.brand img {
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
height: 48px;
|
|
|
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
}
|
|
|
|
.nav {
|
|
|
|
.nav {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
gap: var(--space-2);
|
|
|
|
gap: var(--space-2);
|
|
|
|
|