feat: improve integration UI

This commit is contained in:
Anish Sarkar 2026-02-09 02:49:08 +05:30
parent 20a13df7e7
commit cf76f6f575
3 changed files with 187 additions and 163 deletions

View file

@ -187,5 +187,24 @@ button {
background-color: hsl(var(--muted-foreground) / 0.4);
}
/* Integrations section — vertical column auto-scroll */
@keyframes integrations-scroll-up {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
@keyframes integrations-scroll-down {
0% {
transform: translateY(-50%);
}
100% {
transform: translateY(0);
}
}
@source '../node_modules/@llamaindex/chat-ui/**/*.{ts,tsx}';
@source '../node_modules/streamdown/dist/*.js';