-
-
}
- variant={hover && clickable ? "lighter" : "light"}
- size="md"
- />
+
}
+ variant={
+ isMobile ? "lighter" : hover && clickable ? "lighter" : "light"
+ }
+ size={isMobile ? "lg" : "md"}
+ />
+
-
- {metadata.certified ? (
-
- ) : (
-
- )}
-
- {metadata.edition}
-
+
+ {metadata.certified ? (
+
+ ) : (
+
+ )}
+
+ {metadata.edition}
+
+
{pins.length > 0 && (
@@ -136,7 +140,7 @@ export const ArcadeGameHeader = ({
theme={active}
pins={pins}
variant={variant}
- className={className}
+ className={cn("h-8", className)}
color={color}
/>
)}
diff --git a/client/src/components/modules/summary.tsx b/client/src/components/modules/summary.tsx
index 585d3941..9a6d1b54 100644
--- a/client/src/components/modules/summary.tsx
+++ b/client/src/components/modules/summary.tsx
@@ -107,7 +107,7 @@ export const AchievementSummary = ({
variant={variant}
completed
className={cn(
- "grow",
+ "grow p-1",
variant === "dark" && "bg-background-125",
className,
)}
diff --git a/client/src/components/pages/player.tsx b/client/src/components/pages/player.tsx
index fdd7b880..fd39abec 100644
--- a/client/src/components/pages/player.tsx
+++ b/client/src/components/pages/player.tsx
@@ -240,7 +240,7 @@ export function PlayerPage() {