diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-10-08 15:34:25 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-10-08 15:34:25 -0400 |
| commit | ed99aa84f645d498f3407b2aa8900fc679415daf (patch) | |
| tree | 94c6cd728493cc2a7fdb47779416a763f9f040a3 /hi-ui/src/lib/MessageInput.svelte | |
| parent | 9b709a51d8af7ab0a0a14ae9b8f700e4719d63e7 (diff) | |
Rough in create forms at bottom
Diffstat (limited to 'hi-ui/src/lib/MessageInput.svelte')
| -rw-r--r-- | hi-ui/src/lib/MessageInput.svelte | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hi-ui/src/lib/MessageInput.svelte b/hi-ui/src/lib/MessageInput.svelte index 3d22f89..9e78348 100644 --- a/hi-ui/src/lib/MessageInput.svelte +++ b/hi-ui/src/lib/MessageInput.svelte @@ -24,9 +24,7 @@ } </script> -<form on:submit|preventDefault={handleSubmit}> - <div class="input-group input-group-divider grid-cols-[auto_1fr_auto]"> - <input bind:this={input} bind:value={value} disabled={disabled} type="search" /> - <button color="primary variant-filled-secondary" type="submit">»</button> - </div> +<form on:submit|preventDefault={handleSubmit} class="flex flex-row"> + <input bind:this={input} bind:value={value} disabled={disabled} type="search" class="flex-auto h-6" /> + <button color="primary variant-filled-secondary" type="submit" class="flex-none w-4 h-4">»</button> </form> |
