diff --git a/apps/planner/app/components/SessionView.tsx b/apps/planner/app/components/SessionView.tsx index f8ad6f1..abe0e4c 100644 --- a/apps/planner/app/components/SessionView.tsx +++ b/apps/planner/app/components/SessionView.tsx @@ -55,7 +55,14 @@ export function SessionView({ sessionId }: { sessionId: string }) {
-
+
+ {computing && ( +
+
+
+
+
+ )} diff --git a/packages/ui/src/styles.css b/packages/ui/src/styles.css index f1d8c73..2fa790e 100644 --- a/packages/ui/src/styles.css +++ b/packages/ui/src/styles.css @@ -1 +1,6 @@ @import "tailwindcss"; + +@keyframes slide { + 0% { transform: translateX(-100%); } + 100% { transform: translateX(400%); } +}