Better email template display

This commit is contained in:
Roman Krček
2025-07-12 14:21:18 +02:00
parent 0e5d39b149
commit d6eee9c498
2 changed files with 125 additions and 80 deletions

View File

@@ -1,12 +1,11 @@
GitHub Copilot Instructions for This Repository
If you have any questions, always ask me first.
Use Svelte 5 runes exclusively
Declare reactive state with $state(); derive values with $derived(); run side-effect logic with $effect() etc.
svelte.dev
svelte.dev
Basics:
- If you have any questions, always ask me first!
- Use Svelte 5 runes exclusively
- Declare reactive state with $state(); derive values with $derived(); run side-effect logic with $effect() etc.
- When doing client-side loading, always implement placeholders and loaders, so the UI remains responsive and layout shifts are minimized.
- Don't use placeholders and loaders for static data like heading etc.
Do not fall back to the legacy $: label syntax or Svelte 3/4 stores! This is important!