server state and stdio streaming

This commit is contained in:
2023-10-03 02:57:35 -06:00
parent dc4c8efeb2
commit 4a4563ba85
25 changed files with 502 additions and 80 deletions

View File

@@ -30,3 +30,51 @@
* {
font-family: 'Titillium Web', sans-serif;
}
@layer components {
select, input {
@apply text-black p-2 rounded-xl
}
}
@layer utilities {
.loader-ball {
animation: color-cycle infinite 3s linear;
animation-delay: var(--loader-delay);
@apply m-auto
}
.loader {
animation: spin 5s ease-in-out;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes spin {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(1440deg)
}
}
@keyframes color-cycle {
0% {
@apply bg-fire;
}
25% {
@apply bg-grape;
}
50% {
@apply bg-sky;
}
75% {
@apply bg-wasabi;
}
100% {
@apply bg-fire;
}
}
}

File diff suppressed because one or more lines are too long