feat: streaming chat response and persistant chats

This commit is contained in:
Per Stark
2025-02-26 16:15:59 +01:00
parent c41e370b81
commit 4ce272d5be
12 changed files with 522 additions and 87 deletions

View File

@@ -2541,6 +2541,21 @@
}
}
}
.z-0 {
z-index: 0;
}
.z-1 {
z-index: 1;
}
.z-2 {
z-index: 2;
}
.z-3 {
z-index: 3;
}
.z-5 {
z-index: 5;
}
.z-20 {
z-index: 20;
}
@@ -4074,6 +4089,9 @@
width: calc(var(--spacing) * 10);
height: calc(var(--spacing) * 10);
}
.h-4 {
height: calc(var(--spacing) * 4);
}
.h-5 {
height: calc(var(--spacing) * 5);
}
@@ -4433,6 +4451,9 @@
.p-2 {
padding: calc(var(--spacing) * 2);
}
.p-3 {
padding: calc(var(--spacing) * 3);
}
.p-4 {
padding: calc(var(--spacing) * 4);
}