diff --git a/ui/src/App.vue b/ui/src/App.vue index 406c89b..2183a0a 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -68,7 +68,7 @@ const transitionDurationStyle = computed(() => { // The global style.css will handle base background and text color via body styling // but we can keep specific overrides here if needed or theme classes. // ui.theme === 'dark' ? 'bg-gray-800 text-gray-100' : 'bg-gray-100 text-gray-900' - ]" :style="transitionDurationStyle"> + ]" :style="transitionDurationStyle"> diff --git a/ui/src/components/chat/CanvasChat.vue b/ui/src/components/chat/CanvasChat.vue index baa8ed0..9846d08 100644 --- a/ui/src/components/chat/CanvasChat.vue +++ b/ui/src/components/chat/CanvasChat.vue @@ -68,6 +68,7 @@ watch(() => chat.items.length, scrollBottom) fontFamily: 'var(--chat-font-family)', fontSize: 'var(--chat-font-size)' }"> + {{ m.text }} @@ -84,6 +85,7 @@ watch(() => chat.items.length, scrollBottom) @keydown="handleKey" rows="1" placeholder="Escribí un mensaje… (Enter para enviar, Shift+Enter salto)" + class="flex-1 resize-none rounded-lg border p-3 focus:outline-none focus:ring-2 custom-scroll" :style="{ backgroundColor: 'var(--chat-input-box-color)', @@ -102,6 +104,18 @@ watch(() => chat.items.length, scrollBottom) diff --git a/ui/src/views/empleados/EmpleadoForm.vue b/ui/src/views/empleados/EmpleadoForm.vue index 8429a51..72b86c9 100644 --- a/ui/src/views/empleados/EmpleadoForm.vue +++ b/ui/src/views/empleados/EmpleadoForm.vue @@ -1,13 +1,13 @@