From 0bcabf0731b48f1f993d1013835b54fa30509c17 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 21 Oct 2025 20:51:15 -0600 Subject: [PATCH] Fix page --- .../components/card/ClassificationCard.tsx | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx index e533a1597..fcc86bc91 100644 --- a/web/src/components/card/ClassificationCard.tsx +++ b/web/src/components/card/ClassificationCard.tsx @@ -366,20 +366,24 @@ export function GroupedClassificationCard({ )} > {group.map((data: ClassificationItemData) => ( - { - if (meta || selectedItems.length > 0) { - onClick(data); - } - }} + className={cn(isMobile && "aspect-square size-full")} > - {children?.(data)} - + { + if (meta || selectedItems.length > 0) { + onClick(data); + } + }} + > + {children?.(data)} + + ))}