Skip to content

Commit 2d101c8

Browse files
authored
Merge pull request #618 from shapehq/bugfix/plus-in-new-project-not-centered
Fixes plus icon in New Project button not centered
2 parents 7c1862d + 94fe0d7 commit 2d101c8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/features/sidebar/view/internal/sidebar/NewProjectButton.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ const NewProjectButton = () => {
2424
height={40}
2525
sx={{ background: "#dfdfdf" }}
2626
>
27-
<Stack sx={{ height: "100%" }} justifyContent="center">
27+
<Stack
28+
sx={{ height: "100%" }}
29+
justifyContent="center"
30+
alignItems="center"
31+
>
2832
<FontAwesomeIcon icon={faPlus} size="lg" color="#bababa" />
2933
</Stack>
3034
</ProjectAvatarSquircle>

0 commit comments

Comments
 (0)