Skip to content

Commit fa62cca

Browse files
committed
fix(project-selection): fix alignment of unit and org inputs
1 parent 6a99669 commit fa62cca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/projects/ProjectSelection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import { SelectUnit } from "../userContext/SelectUnit";
77
export const ProjectSelection = () => {
88
return (
99
<Grid container spacing={1}>
10-
<Grid container item alignItems="center" sm={6}>
10+
<Grid container item alignItems="baseline" sm={6}>
1111
<SelectOrganisation />
1212
</Grid>
13-
<Grid container item alignItems="center" sm={6}>
13+
<Grid container item alignItems="baseline" sm={6}>
1414
<SelectUnit userFilter={["none"]} />
1515
</Grid>
16-
<Grid container item alignItems="center" sm={12}>
16+
<Grid container item alignItems="baseline" sm={12}>
1717
<SelectProject size="medium" />
1818
</Grid>
1919
</Grid>

0 commit comments

Comments
 (0)