feat: UI updates to ChatInterface component and global styles. Changing how tools look like

This commit is contained in:
simos
2025-10-31 02:01:08 +00:00
parent df726c2d4f
commit da6f35adc9
3 changed files with 311 additions and 155 deletions

View File

@@ -825,4 +825,16 @@
background-color: rgb(31 41 55) !important;
color: rgb(243 244 246) !important;
}
/* Tool details chevron animation */
details[open] .details-chevron,
details[open] summary svg[class*="group-open"] {
transform: rotate(180deg);
}
/* Smooth chevron transition */
.details-chevron,
summary svg[class*="transition-transform"] {
transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
}