diff --git a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/AddBoardButton.tsx b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/AddBoardButton.tsx index 15490d8081..60468de145 100644 --- a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/AddBoardButton.tsx +++ b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/AddBoardButton.tsx @@ -44,7 +44,9 @@ const AddBoardButton = ({ isPrivateBoard }: Props) => { onClick={handleCreateBoard} size="md" data-testid="add-board-button" - variant="ghost" + variant="link" + w={8} + h={8} /> ); }; diff --git a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx index dd34cba93b..9bbc68ff9d 100644 --- a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx +++ b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx @@ -44,7 +44,7 @@ const BoardsList = () => { {allowPrivateBoards && ( <> - + {t('boards.private')} @@ -63,7 +63,7 @@ const BoardsList = () => { )} - + {allowPrivateBoards ? t('boards.shared') : t('boards.boards')}