* chore: reduce flow page heading and input text sizes * feat: add bouquet image download on result and map pages * chore: polish edit page chat UI and quick prompts * perf: run mood analysis in background after upload * feat: add header FlowNav and persist form state when navigating back
13 lines
285 B
Svelte
13 lines
285 B
Svelte
<script>
|
|
let { class: klass = '', children } = $props();
|
|
</script>
|
|
|
|
<div
|
|
class={[
|
|
'fixed right-0 bottom-0 left-0 z-20 space-y-1.5 bg-placeholder/30 px-4 pb-5 lg:static lg:mx-auto lg:w-full lg:max-w-2xl lg:bg-transparent lg:px-6 lg:pb-0',
|
|
klass
|
|
]}
|
|
>
|
|
{@render children()}
|
|
</div>
|