Files
ai-florist/src/lib/components/ui/edit/EditComposerBar.svelte
Chaewon Lee 71da3f2c17 fix: flow navigation, upload UX, and edit page polish
* 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
2026-06-16 01:19:15 +09:00

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>