1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

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)
This commit is contained in:
Thomas Heartman 2024-10-03 14:29:49 +02:00 committed by GitHub
parent 41f9cac758
commit cfcaf00a8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) => {