Some checks failed
CI / Unit & Component Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Unit & Component Tests (pull_request) Successful in 2m35s
CI / Backend Unit Tests (pull_request) Failing after 2m22s
CI / E2E Tests (pull_request) Failing after 1h23m35s
Move text-decoration-thickness/underline-offset into the global a:hover
base rule so every link that shows an underline on hover gets identical
treatment: 2px thick, 4px offset, accent colour.
Remove the now-redundant per-component decoration-brand-mint / decoration-
accent / decoration-2 / underline-offset-{2,4} utilities from DocumentList,
enrich, persons, PersonDocumentList, and PanelMetadata.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
41 lines
1.0 KiB
Svelte
41 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
</script>
|
|
|
|
<div class="mx-auto max-w-4xl px-4 py-10">
|
|
<div
|
|
class="flex flex-col items-center justify-center rounded-sm border border-line bg-surface py-20 text-center shadow-sm"
|
|
>
|
|
<img
|
|
src="/degruyter-icons/Simple/Large-32px/SVG/Action/Check/Check-Double-LG.svg"
|
|
alt=""
|
|
aria-hidden="true"
|
|
class="mb-6 h-16 w-16"
|
|
/>
|
|
|
|
<h1 class="font-serif text-2xl font-medium text-ink">
|
|
{m.enrich_done_heading()}
|
|
</h1>
|
|
|
|
<p class="mt-2 max-w-xs font-sans text-sm text-ink-2">
|
|
{m.enrich_done_body()}
|
|
</p>
|
|
|
|
<div class="mt-8 flex flex-col items-center gap-4">
|
|
<a
|
|
href="/"
|
|
class="bg-primary px-6 py-2 font-sans text-xs font-bold tracking-widest text-primary-fg uppercase transition-colors hover:bg-primary/90"
|
|
>
|
|
{m.btn_back_to_overview()}
|
|
</a>
|
|
|
|
<a
|
|
href="/enrich"
|
|
class="font-sans text-xs text-ink-2 transition-colors hover:text-ink hover:underline"
|
|
>
|
|
{m.enrich_back_to_list()}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|