From cfcaf00a8e37edd5b1eabdbb0e92e728258e48d6 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 3 Oct 2024 14:29:49 +0200 Subject: [PATCH] fix: vertically center owners and roles content (#8357) This change fixes the vertical alignment of the owners and roles content. Before: ![image](https://github.com/user-attachments/assets/369a738d-06de-4d40-8b2e-a6fff5127714) After: ![image](https://github.com/user-attachments/assets/4359c47d-d1d5-47b8-9af4-c722fe46fd79) --- frontend/src/component/personalDashboard/RoleAndOwnerInfo.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/component/personalDashboard/RoleAndOwnerInfo.tsx b/frontend/src/component/personalDashboard/RoleAndOwnerInfo.tsx index 645b04e4e1..3e19530420 100644 --- a/frontend/src/component/personalDashboard/RoleAndOwnerInfo.tsx +++ b/frontend/src/component/personalDashboard/RoleAndOwnerInfo.tsx @@ -19,6 +19,7 @@ const Wrapper = styled('div')(({ theme }) => ({ const InfoSection = styled('div')(({ theme }) => ({ display: 'flex', gap: theme.spacing(1), + alignItems: 'center', })); export const RoleAndOwnerInfo = ({ roles, owners }: Props) => {