mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): tweak add board button style
This commit is contained in:
parent
fea1ec9085
commit
b70e87f25b
@ -44,7 +44,9 @@ const AddBoardButton = ({ isPrivateBoard }: Props) => {
|
|||||||
onClick={handleCreateBoard}
|
onClick={handleCreateBoard}
|
||||||
size="md"
|
size="md"
|
||||||
data-testid="add-board-button"
|
data-testid="add-board-button"
|
||||||
variant="ghost"
|
variant="link"
|
||||||
|
w={8}
|
||||||
|
h={8}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -44,7 +44,7 @@ const BoardsList = () => {
|
|||||||
<OverlayScrollbarsComponent defer style={overlayScrollbarsStyles} options={overlayScrollbarsParams.options}>
|
<OverlayScrollbarsComponent defer style={overlayScrollbarsStyles} options={overlayScrollbarsParams.options}>
|
||||||
{allowPrivateBoards && (
|
{allowPrivateBoards && (
|
||||||
<>
|
<>
|
||||||
<Flex w="full" justifyContent="space-between" alignItems="center" ps={2}>
|
<Flex w="full" justifyContent="space-between" alignItems="center" ps={2} py={1}>
|
||||||
<Text fontSize="md" fontWeight="medium" userSelect="none">
|
<Text fontSize="md" fontWeight="medium" userSelect="none">
|
||||||
{t('boards.private')}
|
{t('boards.private')}
|
||||||
</Text>
|
</Text>
|
||||||
@ -63,7 +63,7 @@ const BoardsList = () => {
|
|||||||
</Flex>
|
</Flex>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<Flex w="full" justifyContent="space-between" alignItems="center" ps={2}>
|
<Flex w="full" justifyContent="space-between" alignItems="center" ps={2} py={1}>
|
||||||
<Text fontSize="md" fontWeight="medium" userSelect="none">
|
<Text fontSize="md" fontWeight="medium" userSelect="none">
|
||||||
{allowPrivateBoards ? t('boards.shared') : t('boards.boards')}
|
{allowPrivateBoards ? t('boards.shared') : t('boards.boards')}
|
||||||
</Text>
|
</Text>
|
||||||
|
Loading…
Reference in New Issue
Block a user