diff --git a/components/Settings/CardStyle.tsx b/components/Settings/CardStyle.tsx index 88d0fe9..e0f3d7b 100644 --- a/components/Settings/CardStyle.tsx +++ b/components/Settings/CardStyle.tsx @@ -5,7 +5,7 @@ import type { CardStyle } from '@/types'; const cardStyleOptions: CardStyle[] = ['standard', 'color', 'grayscale']; -export default function CardStyle() { +export default function CardStyle({ className }: { className?: string }) { const { gameData, isDM, settings, emitSettings } = useAppContext(); const tuneRadio = (cardStyle: CardStyle) => { @@ -19,18 +19,18 @@ export default function CardStyle() { }; return isDM ? ( -
-
Card style:
+
+
Card style:
{cardStyleOptions.map((option, index) => (