Files
familienarchiv/frontend/src/lib/components/AnnotateHintStrip.svelte
Marcel 1d2e6d7b86
Some checks failed
CI / Unit & Component Tests (pull_request) Failing after 1m54s
CI / Backend Unit Tests (pull_request) Failing after 2m55s
CI / E2E Tests (pull_request) Failing after 1h12m45s
CI / Unit & Component Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
feat(topbar): double all font sizes and increase bar height for legibility
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-01 08:52:23 +02:00

19 lines
530 B
Svelte

<script lang="ts">
type Props = {
annotateMode: boolean;
};
let { annotateMode }: Props = $props();
</script>
{#if annotateMode}
<div
data-testid="annotate-hint-strip"
class="hidden h-[36px] items-center gap-2 border-t border-dashed px-3.5 md:flex"
style="background: rgba(1,40,81,0.05); border-color: rgba(1,40,81,0.20)"
>
<span class="text-[20px] font-bold tracking-wide text-primary uppercase">Annotieren</span>
<span class="text-[20px] text-ink-2">Klicken Sie auf einen Bereich im Dokument</span>
</div>
{/if}