From d07383b25167b7d25b1a24ceb555ac366fdace07 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Sat, 19 Jul 2025 17:37:59 +0100 Subject: [PATCH] style: mobile support for new filter UI i forgor --- src/components/mii-list/index.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/mii-list/index.tsx b/src/components/mii-list/index.tsx index a01c318..0709824 100644 --- a/src/components/mii-list/index.tsx +++ b/src/components/mii-list/index.tsx @@ -141,20 +141,24 @@ export default async function MiiList({ searchParams, userId, inLikesPage }: Pro return (
-
-

+

+
{totalCount == filteredCount ? ( <> - {totalCount} Miis + {totalCount} + {totalCount === 1 ? "Mii" : "Miis"} ) : ( <> - {filteredCount} of {totalCount} Miis + {filteredCount} + of + {totalCount} + Miis )} -

+
-
+