From a4a8c191b6372ed5cdfc4ca7ce97f57e72e05136 Mon Sep 17 00:00:00 2001 From: John Costa Date: Wed, 2 Jul 2025 14:24:17 +0100 Subject: [PATCH] feat: styling --- .../src/notifications/ProcessingImages.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/frontend/src/notifications/ProcessingImages.tsx b/frontend/src/notifications/ProcessingImages.tsx index 9f5faa5..20cbfdf 100644 --- a/frontend/src/notifications/ProcessingImages.tsx +++ b/frontend/src/notifications/ProcessingImages.tsx @@ -2,15 +2,16 @@ import { Popover } from "@kobalte/core/popover"; import { type Component, For, Show } from "solid-js"; import { base } from "../network"; import { useNotifications } from "../ProtectedRoute"; -import { useSearchImageContext } from "../contexts/SearchImageContext"; -const LoadingCircle: Component<{ status: "loading" | "complete" }> = ( - props, -) => { +const LoadingCircle: Component<{ + status: "loading" | "complete"; + class?: string; +}> = (props) => { switch (props.status) { case "loading": return ( = ( case "complete": return ( { const notifications = useNotifications(); return ( - +

Processing Images

{ - + {([id, _image]) => ( {(image) => ( -
+
processing {

{image().ImageName}

+
+ +
)}