server state and stdio streaming
This commit is contained in:
@@ -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
Reference in New Issue
Block a user