Skip to content

Commit 0d35761

Browse files
authored
Merge pull request #191 from tegonal/fix/css-paragraph-explosion
fix paragraph exploding parent container
2 parents 83d3a2d + 385308c commit 0d35761

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

frontend/src/layout/pages/organisation/current/organisationDetail.tsx

+9-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,15 @@ export const OrganisationDetail: React.FC = () => {
7474
)}
7575
</Heading>
7676
{selectedOrganisation?.private && (
77-
<Flex sx={{ ...flexColumnJustifyCenterAlignCenter(3), mb: 4 }}>
77+
<Flex
78+
sx={{
79+
...flexColumnJustifyCenterAlignCenter(3),
80+
mb: 4,
81+
maxWidth: 500,
82+
textAlign: 'center',
83+
mx: 'auto',
84+
}}
85+
>
7886
<Icon name="lock-1-interface-essential" size={24} />
7987
<Box>
8088
{t(

0 commit comments

Comments
 (0)