Update copilot

This commit is contained in:
Pranav
2025-05-11 10:51:33 -07:00
parent 4cd9bcd938
commit 115ca2feb0
11 changed files with 49 additions and 17 deletions
@@ -132,7 +132,7 @@ const handleClose = () => {
<template>
<div
v-if="isSidebarOpen"
class="border-l border-n-weak w-[18rem] min-w-[18rem]"
class="border-l border-n-weak w-[20rem] min-w-[20rem]"
>
<Copilot
:messages="messages"
@@ -12,13 +12,13 @@ defineProps({
</script>
<template>
<div class="flex flex-col gap-2 p-2 rounded bg-n-background">
<div class="flex flex-col gap-1 px-2 rounded bg-n-background">
<div
v-if="reasoning"
class="text-xs text-n-slate-11 border-t border-n-weak pt-2"
class="text-xs text-n-slate-11 border-t border-n-weak"
>
{{ reasoning }}
</div>
<p class="text-sm text-n-slate-12">{{ content }}</p>
<p class="text-sm text-n-slate-11">{{ content }}</p>
</div>
</template>