diff --git a/app/components/board/board.tsx b/app/components/board/board.tsx index 98f9f0c..ee8da6e 100644 --- a/app/components/board/board.tsx +++ b/app/components/board/board.tsx @@ -54,7 +54,7 @@ function BoardComponent({ className="mx-auto max-w-screen-lg" style={{ minWidth: `${board.categoryNames.length * 50}px` }} > - +
{board.categories.map((category) => ( diff --git a/app/components/board/category.tsx b/app/components/board/category.tsx index 8a26468..f071847 100644 --- a/app/components/board/category.tsx +++ b/app/components/board/category.tsx @@ -4,13 +4,13 @@ export function Category({ name, note }: { name: string; note?: string }) { const { fontSize, ref } = useFitText({ maxFontSize: 300 }); return ( -
+

- + {name}

diff --git a/app/components/board/clue.tsx b/app/components/board/clue.tsx index 4748994..743ffbc 100644 --- a/app/components/board/clue.tsx +++ b/app/components/board/clue.tsx @@ -59,7 +59,7 @@ const ClueButton = React.forwardRef( onKeyDown(event); }} className={classNames( - "group relative h-full w-full bg-blue-1000 px-4 py-3 transition-colors", + "group relative h-full w-full bg-blue-bright px-4 py-3 transition-colors", { "hover:bg-blue-700 focus:bg-blue-700": playable, "bg-slate-800": !playable, @@ -71,7 +71,7 @@ const ClueButton = React.forwardRef( >

+

{props.answered ? ( { diff --git a/app/components/dialog.tsx b/app/components/dialog.tsx index 758cfb3..c48535c 100644 --- a/app/components/dialog.tsx +++ b/app/components/dialog.tsx @@ -40,17 +40,17 @@ export default function Dialog({ - + {title} - + {description} {children} diff --git a/app/components/dropdown-menu.tsx b/app/components/dropdown-menu.tsx index 243416d..49fe3d4 100644 --- a/app/components/dropdown-menu.tsx +++ b/app/components/dropdown-menu.tsx @@ -4,8 +4,8 @@ function Item(props: DropdownMenu.MenuItemProps) { return ( {props.children} @@ -16,7 +16,7 @@ function Item(props: DropdownMenu.MenuItemProps) { function Content(props: DropdownMenu.MenuContentProps) { return ( {props.children} - + ); } @@ -37,4 +37,4 @@ const Portal = DropdownMenu.Portal; const Label = DropdownMenu.Label; const Separator = DropdownMenu.Separator; -export { Root, Trigger, Portal, Content, Item, Label, Separator }; +export { Content, Item, Label, Portal, Root, Separator, Trigger }; diff --git a/app/components/footer.tsx b/app/components/footer.tsx index 4bcb820..c4bb8d0 100644 --- a/app/components/footer.tsx +++ b/app/components/footer.tsx @@ -70,7 +70,7 @@ export default function Footer() { return (