refactor: enhance UI components and navigation structure, implement export functionality for wizard steps, and update routing for improved user experience

This commit is contained in:
Jennie Robinson Faber 2025-08-16 13:17:36 +01:00
parent 37ab8d7bab
commit d7e52293e4
18 changed files with 3802 additions and 3318 deletions

View file

@ -7,4 +7,21 @@
html { @apply bg-white text-neutral-900; }
html.dark { @apply bg-neutral-950 text-neutral-100; }
}
/* Disable all animations, transitions, and smooth scrolling app-wide */
html,
body {
scroll-behavior: auto !important;
}
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
}
.document-page {
@apply max-w-4xl mx-auto bg-white relative p-8 border-1 border-neutral-900 dark:border-neutral-100;
}