WIP - UI drawer initial

This commit is contained in:
Francisco Gaona
2026-01-07 22:11:36 +01:00
parent b34da6956c
commit 8ad3fac1b0
4 changed files with 169 additions and 13 deletions

View File

@@ -21,7 +21,7 @@ const handleSend = () => {
</script>
<template>
<div class="ai-chat-area sticky bottom-0 z-20 bg-background border-t border-border p-4 bg-neutral-50">
<div class="ai-chat-area w-full border-t border-border p-4 bg-neutral-50">
<InputGroup>
<InputGroupTextarea
v-model="chatInput"
@@ -50,8 +50,6 @@ const handleSend = () => {
<style scoped>
.ai-chat-area {
height: calc(100vh / 6);
min-height: 140px;
max-height: 200px;
min-height: 120px;
}
</style>