diff --git a/front/src/layout/containers/HorizontalyAlignedContainer.tsx b/front/src/layout/containers/HorizontalyAlignedContainer.tsx
new file mode 100644
index 000000000..6892b2fa3
--- /dev/null
+++ b/front/src/layout/containers/HorizontalyAlignedContainer.tsx
@@ -0,0 +1,16 @@
+import styled from '@emotion/styled';
+
+type OwnProps = {
+ children: JSX.Element[];
+};
+
+const StyledContainer = styled.div`
+ display: flex;
+ align-items: center;
+`;
+
+function HorizontalyAlignedContainer({ children: children }: OwnProps) {
+ return {children};
+}
+
+export default HorizontalyAlignedContainer;
diff --git a/front/src/pages/people/People.tsx b/front/src/pages/people/People.tsx
index a6609305d..3135ce971 100644
--- a/front/src/pages/people/People.tsx
+++ b/front/src/pages/people/People.tsx
@@ -17,6 +17,7 @@ import ColumnHead from '../../components/table/ColumnHead';
import personPlaceholder from './placeholder.png';
import { parsePhoneNumber, CountryCode } from 'libphonenumber-js';
import Checkbox from '../../components/form/Checkbox';
+import HorizontalyAlignedContainer from '../../layout/containers/HorizontalyAlignedContainer';
type Person = {
fullName: string;
@@ -106,7 +107,7 @@ const columns = [
columnHelper.accessor('fullName', {
header: () => ,
cell: (props) => (
- <>
+
- >
+
),
}),
columnHelper.accessor('email', {