All checks were successful
CI / Unit & Component Tests (pull_request) Successful in 3m49s
CI / OCR Service Tests (pull_request) Successful in 25s
CI / Backend Unit Tests (pull_request) Successful in 4m7s
CI / fail2ban Regex (pull_request) Successful in 49s
CI / Semgrep Security Scan (pull_request) Successful in 24s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m10s
Intro, letter titles, curator annotations, and interludes rendered at 12-14px — copied from the scaled mockup sizes in LR-2. Narrative text is now 16-18px, meta lines and links 14px; the LR-2 impl-ref table is updated to match. Closes #800 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
418 B
Svelte
19 lines
418 B
Svelte
<script lang="ts">
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
|
|
interface Props {
|
|
note: string;
|
|
}
|
|
|
|
let { note }: Props = $props();
|
|
</script>
|
|
|
|
<div
|
|
role="note"
|
|
aria-label={m.journey_interlude_aria_label()}
|
|
class="my-4 rounded-r-sm border-l-2 border-orange-400 bg-orange-50 py-2 pr-3 pl-3"
|
|
>
|
|
<!-- plaintext — do NOT use {@html} here -->
|
|
<p class="text-base leading-relaxed text-ink italic">{note}</p>
|
|
</div>
|